blob: de458d4eb91b146242bad35ed757a6781a6c7bf2 (
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
27
28
29
30
|
include(../../plugins.pri)
TARGET =$$PLUGINS_PREFIX/General/converter
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/General/libconverter.so
LIBS += -lqmmpui
PKGCONFIG += taglib
RESOURCES = translations/translations.qrc presets.qrc
unix{
target.path = $$LIB_DIR/qmmp/General
INSTALLS += target
}
HEADERS += converterfactory.h \
converterhelper.h \
converterdialog.h \
converter.h \
preseteditor.h
SOURCES += converterfactory.cpp \
converterhelper.cpp \
converterdialog.cpp \
converter.cpp \
preseteditor.cpp
FORMS += converterdialog.ui \
preseteditor.ui
|