blob: 8378b994399600e4e1a3ce078b06802f77a943e6 (
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 += bs2bplugin.h \
effectbs2bfactory.h \
settingsdialog.h
SOURCES += bs2bplugin.cpp \
effectbs2bfactory.cpp \
settingsdialog.cpp
TARGET =$$PLUGINS_PREFIX/Effect/bs2b
RESOURCES = translations/translations.qrc
FORMS += settingsdialog.ui
unix {
target.path = $$LIB_DIR/qmmp/Effect
INSTALLS += target
PKGCONFIG += libbs2b
LIBS += -lqmmp -L/usr/lib -I/usr/include
QMAKE_CLEAN =$$PLUGINS_PREFIX/Effect/libbs2b.so
}
win32 {
LIBS += -lqmmp0 -lbs2b
}
|