blob: a5cf61f8074b5cd740f58e292b11d7add21ca19c (
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
|
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
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
}
FORMS += settingsdialog.ui
|