blob: f86f92806bfb7c9c4086b72a2f0c684d41bdd437 (
plain) (
tree)
|
|
include(../../plugins.pri)
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
TARGET = $$PLUGINS_PREFIX/Effect/ladspa
QMAKE_CLEAN = $$PLUGINS_PREFIX/Effect/libladspa.so
INCLUDEPATH += ../../../
CONFIG += warn_on \
plugin \
link_pkgconfig
TEMPLATE = lib
QMAKE_LIBDIR += ../../../../lib
LIBS += -lqmmp \
-L/usr/lib \
-I/usr/include
linux-g++|linux-g++-32|linux-g++-64:LIBS += -ldl
TRANSLATIONS = translations/ladspa_plugin_cs.ts \
translations/ladspa_plugin_de.ts \
translations/ladspa_plugin_zh_CN.ts \
translations/ladspa_plugin_zh_TW.ts \
translations/ladspa_plugin_uk_UA.ts \
translations/ladspa_plugin_pl.ts \
translations/ladspa_plugin_ru.ts \
translations/ladspa_plugin_it.ts \
translations/ladspa_plugin_tr.ts \
translations/ladspa_plugin_lt.ts \
translations/ladspa_plugin_nl.ts \
translations/ladspa_plugin_ja.ts \
translations/ladspa_plugin_es.ts \
translations/ladspa_plugin_sr_BA.ts \
translations/ladspa_plugin_sr_RS.ts
RESOURCES = translations/translations.qrc
isEmpty(LIB_DIR):LIB_DIR = /lib
target.path = $$LIB_DIR/qmmp/Effect
INSTALLS += target
FORMS += settingsdialog.ui
|