blob: 4e760187845bf7bf2e599f5d444dda408996b08d (
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 = $$PLUGIN_DIR/Effect
INSTALLS += target
}
|