blob: 6c4d07754292897b47473cec9e43d39123829729 (
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/crossfade
HEADERS += crossfadeplugin.h \
effectcrossfadefactory.h \
settingsdialog.h
SOURCES += crossfadeplugin.cpp \
effectcrossfadefactory.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
unix {
target.path = $$PLUGIN_DIR/Effect
INSTALLS += target
}
|