blob: 4421d8287f8dbfdd4c1cef5294ae66aab6868521 (
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
|
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
|