blob: 49e03b78f07a04ac084b4b3be1b47702d6fa7e24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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
CONFIG += warn_on \
plugin
TEMPLATE = lib
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Effect
INSTALLS += target
CONFIG += link_pkgconfig
PKGCONFIG += soxr
LIBS += -lqmmp -L/usr/lib -I/usr/include
}
win32 {
LIBS += -lqmmp0 -lsoxr
}
FORMS += settingsdialog.ui
|