diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-08-20 17:46:58 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2007-08-20 17:46:58 +0000 |
| commit | 47b9040ab056e2f3cf42462b5031b108930c78ce (patch) | |
| tree | 80d9784adf30e8ee3523cd1b3160b5c9c52156ee /lib | |
| parent | a675c9782c987995dd6251adcd09be2cc28f8b1d (diff) | |
| download | qmmp-47b9040ab056e2f3cf42462b5031b108930c78ce.tar.gz qmmp-47b9040ab056e2f3cf42462b5031b108930c78ce.tar.bz2 qmmp-47b9040ab056e2f3cf42462b5031b108930c78ce.zip | |
updated qmake build scripts
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@110 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/qmmp/Output/Output.pro | 8 | ||||
| -rw-r--r-- | lib/qmmp/Output/oss/oss.pro | 32 |
2 files changed, 40 insertions, 0 deletions
diff --git a/lib/qmmp/Output/Output.pro b/lib/qmmp/Output/Output.pro index 727d3ac20..eed8b9f14 100644 --- a/lib/qmmp/Output/Output.pro +++ b/lib/qmmp/Output/Output.pro @@ -16,3 +16,11 @@ contains(CONFIG, JACK_PLUGIN){ message(* JACK plugin enabled *) message(***********************) } + +contains(CONFIG, OSS_PLUGIN){ + SUBDIRS += oss + message(**********************) + message(* OSS plugin enabled *) + message(**********************) +} + diff --git a/lib/qmmp/Output/oss/oss.pro b/lib/qmmp/Output/oss/oss.pro new file mode 100644 index 000000000..e5445213b --- /dev/null +++ b/lib/qmmp/Output/oss/oss.pro @@ -0,0 +1,32 @@ + + +HEADERS += outputossfactory.h \ + outputoss.h + + +SOURCES += outputossfactory.cpp \ + outputoss.cpp + + +INCLUDEPATH += ../../../ +QMAKE_LIBDIR += ../../../ +QMAKE_CLEAN = ../liboss.so +CONFIG += release \ +warn_on \ +thread \ +plugin + +DESTDIR = ../ +TEMPLATE = lib +LIBS += -lqmmp + +#TRANSLATIONS = translations/oss_plugin_ru.ts \ +# translations/oss_plugin_uk_UA.ts \ +# translations/oss_plugin_zh_CN.ts +#RESOURCES = translations/translations.qrc +isEmpty (LIB_DIR){ +LIB_DIR = /lib +} + +target.path = $$LIB_DIR/qmmp/Output +INSTALLS += target |
