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