blob: 84378c3e89c961c4f6d746acb2f6f1333342bff6 (
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 = $$LIB_DIR/qmmp/Effect
INSTALLS += target
}
|