blob: 21c0c366f3aff471431688c1e4558222b3b78372 (
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
|
include(../../plugins.pri)
FORMS += settingsdialog.ui
HEADERS += decodercuefactory.h \
cueparser.h \
decoder_cue.h \
settingsdialog.h \
cuemetadatamodel.h
SOURCES += decoder_cue.cpp \
decodercuefactory.cpp \
cueparser.cpp \
settingsdialog.cpp \
cuemetadatamodel.cpp
TARGET = $$PLUGINS_PREFIX/Input/cue
unix:QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libcue.so
contains(CONFIG, WITH_ENCA){
DEFINES += WITH_ENCA
unix:PKGCONFIG += enca
win32:LIBS += -lenca.dll
}
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
}
|