blob: dc26945b2fff33893f7e7764e9e3cdf5f0206ac9 (
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/General/rgscan
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/librgscan.so
LIBS += -lqmmpui
RESOURCES = translations/translations.qrc
unix{
PKGCONFIG += taglib
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
HEADERS += rgscanfactory.h \
rgscanhelper.h \
rgscandialog.h \
gain_analysis.h \
rgscanner.h
SOURCES += rgscanfactory.cpp \
rgscanhelper.cpp \
rgscandialog.cpp \
gain_analysis.c \
rgscanner.cpp
FORMS += rgscandialog.ui
|