blob: a96f0e6b74e706b5cc1587db1e2d1b8ea7a2f38e (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Input/archive
HEADERS += \
archiveinputdevice.h \
decoderarchivefactory.h \
decoder_archive.h \
archivetagreader.h \
archivemetadatamodel.h
SOURCES += \
archiveinputdevice.cpp \
decoderarchivefactory.cpp \
decoder_archive.cpp \
archivetagreader.cpp \
archivemetadatamodel.cpp
RESOURCES = translations/translations.qrc
unix {
target.path = $$PLUGIN_DIR/Input
INSTALLS += target
PKGCONFIG += libarchive taglib
}
|