blob: 5de6744fce7b74ed7988b05eb807f154715f06f6 (
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)
HEADERS += \
archiveinputdevice.h \
decoderarchivefactory.h \
decoder_archive.h \
archivetagreader.h \
archivemetadatamodel.h
SOURCES += \
archiveinputdevice.cpp \
decoderarchivefactory.cpp \
decoder_archive.cpp \
archivetagreader.cpp \
archivemetadatamodel.cpp
TARGET=$$PLUGINS_PREFIX/Input/archive
LIBS += -lqmmp
RESOURCES = translations/translations.qrc
unix {
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
PKGCONFIG += libarchive taglib
QMAKE_CLEAN =$$PLUGINS_PREFIX/Input/libarc.so
}
|