blob: 1b1af51731254e356e1e9580edf945a0cd3a6f31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Effect/stereo
HEADERS += stereoplugin.h \
effectstereofactory.h \
settingsdialog.h
SOURCES += stereoplugin.cpp \
effectstereofactory.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Effect
INSTALLS += target
}
|