diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-01-11 13:30:49 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-01-11 13:30:49 +0000 |
| commit | 79f5b3ca078825a2e772433e09c3dbd1ad4faba7 (patch) | |
| tree | 9badc280a96300472b74edf07bfe4eaa76505cfc /src/plugins/Effect/soxr/soxr.pro | |
| parent | 16138248f094683d5665f324d821f6a0bc0b556a (diff) | |
| download | qmmp-79f5b3ca078825a2e772433e09c3dbd1ad4faba7.tar.gz qmmp-79f5b3ca078825a2e772433e09c3dbd1ad4faba7.tar.bz2 qmmp-79f5b3ca078825a2e772433e09c3dbd1ad4faba7.zip | |
added soxr plugin
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5982 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Effect/soxr/soxr.pro')
| -rw-r--r-- | src/plugins/Effect/soxr/soxr.pro | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/plugins/Effect/soxr/soxr.pro b/src/plugins/Effect/soxr/soxr.pro new file mode 100644 index 000000000..4421d8287 --- /dev/null +++ b/src/plugins/Effect/soxr/soxr.pro @@ -0,0 +1,32 @@ +include(../../plugins.pri) + +HEADERS += soxresampler.h \ + effectsoxrfactory.h \ + settingsdialog.h + +SOURCES += soxresampler.cpp \ + effectsoxrfactory.cpp \ + settingsdialog.cpp + +TARGET=$$PLUGINS_PREFIX/Effect/soxr +QMAKE_CLEAN =$$PLUGINS_PREFIX/Effect/libsoxr.so +INCLUDEPATH += ../../../ +CONFIG += warn_on \ +plugin \ +link_pkgconfig + +PKGCONFIG += soxr +TEMPLATE = lib +QMAKE_LIBDIR += ../../../../lib +LIBS += -lqmmp -L/usr/lib -I/usr/include + +RESOURCES = translations/translations.qrc + +isEmpty(LIB_DIR){ + LIB_DIR = /lib +} +target.path = $$LIB_DIR/qmmp/Effect +INSTALLS += target + +FORMS += settingsdialog.ui + |
