blob: ed5f45bb847dd8b97e6cfd293b944b5aebbddcee (
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/bs2b
HEADERS += bs2bplugin.h \
effectbs2bfactory.h \
settingsdialog.h
SOURCES += bs2bplugin.cpp \
effectbs2bfactory.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
unix {
target.path = $$PLUGIN_DIR/Effect
INSTALLS += target
PKGCONFIG += libbs2b
LIBS += -L/usr/lib -I/usr/include
}
win32 {
LIBS += -lbs2b
}
|