blob: 7fb3402e7f80c83c09ea5990f981dafa0ca1048c (
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)
TARGET = $$PLUGINS_PREFIX/Effect/ladspa
HEADERS += ladspahost.h \
effectladspafactory.h \
settingsdialog.h \
ladspaslider.h \
ladspa.h \
ladspahelper.h \
ladspabutton.h
SOURCES += ladspahost.cpp \
effectladspafactory.cpp \
settingsdialog.cpp \
ladspaslider.cpp \
ladspahelper.cpp \
ladspabutton.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
LIBS += -L/usr/lib -I/usr/include
linux-g++|linux-g++-32|linux-g++-64:LIBS += -ldl
target.path = $$LIB_DIR/qmmp/Effect
INSTALLS += target
|