blob: 6db4fecd760d9a3d2842118825739c51809676f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Visual/analyzer
HEADERS += analyzer.h \
fft.h \
visualanalyzerfactory.h \
inlines.h \
colorwidget.h \
settingsdialog.h
SOURCES += analyzer.cpp \
fft.c \
visualanalyzerfactory.cpp \
colorwidget.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
unix{
target.path = $$LIB_DIR/qmmp/Visual
INSTALLS += target
}
INCLUDEPATH += ./
|