diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-04-27 06:39:56 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-04-27 06:39:56 +0000 |
| commit | c9da71f2828b7940f62e77615915c906c04f8af9 (patch) | |
| tree | 75daeaed2dab09052831863d6de21e662b2ec2dd /src/plugins/Input/sid/sid.pro | |
| parent | bf5722c868e1fa72980c5050c56effe66a70662e (diff) | |
| download | qmmp-c9da71f2828b7940f62e77615915c906c04f8af9.tar.gz qmmp-c9da71f2828b7940f62e77615915c906c04f8af9.tar.bz2 qmmp-c9da71f2828b7940f62e77615915c906c04f8af9.zip | |
prepare for sid plugin implementation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3405 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/sid/sid.pro')
| -rw-r--r-- | src/plugins/Input/sid/sid.pro | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/plugins/Input/sid/sid.pro b/src/plugins/Input/sid/sid.pro new file mode 100644 index 000000000..17bd121b0 --- /dev/null +++ b/src/plugins/Input/sid/sid.pro @@ -0,0 +1,44 @@ +include(../../plugins.pri) + +HEADERS += decodersidfactory.h \ + decoder_sid.h +SOURCES += decoder_sid.cpp \ + decodersidfactory.cpp +TARGET = $$PLUGINS_PREFIX/Input/sid +QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libsid.so +INCLUDEPATH += ../../../ +CONFIG += warn_on \ + plugin \ + link_pkgconfig +TEMPLATE = lib + +TRANSLATIONS = translations/sid_plugin_it.ts \ + translations/sid_plugin_ru.ts \ + translations/sid_plugin_cs.ts \ + translations/sid_plugin_de.ts \ + translations/sid_plugin_zh_CN.ts \ + translations/sid_plugin_zh_TW.ts \ + translations/sid_plugin_uk_UA.ts \ + translations/sid_plugin_pl.ts \ + translations/sid_plugin_tr.ts \ + translations/sid_plugin_lt.ts \ + translations/sid_plugin_nl.ts \ + translations/sid_plugin_ja.ts + +#RESOURCES = translations/translations.qrc + +unix{ + isEmpty (LIB_DIR):LIB_DIR = /lib + target.path = $$LIB_DIR/qmmp/Input + INSTALLS += target + QMAKE_LIBDIR += ../../../../lib + LIBS += -lqmmp + PKGCONFIG += libsidplayfp +} + +win32 { + HEADERS += ../../../../src/qmmp/metadatamodel.h \ + ../../../../src/qmmp/decoderfactory.h + QMAKE_LIBDIR += ../../../../bin + LIBS += -lqmmp0 -lsidplayfp.dll +} |
