blob: 9041467266f49c0eca8685af708a44a0f12bb9b7 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Effect/soxr
HEADERS += soxresampler.h \
effectsoxrfactory.h \
settingsdialog.h
SOURCES += soxresampler.cpp \
effectsoxrfactory.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Effect
INSTALLS += target
PKGCONFIG += soxr
LIBS += -L/usr/lib -I/usr/include
}
win32 {
LIBS += -lsoxr
}
|