aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/archive/archive.pro
blob: d10d22e8cb2049289e2bf343771b409177f2c0f4 (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
31
32
33
34
35
36
37
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

CONFIG += warn_on \
plugin \
link_pkgconfig

TEMPLATE = lib

RESOURCES = translations/translations.qrc

unix {
    target.path = $$LIB_DIR/qmmp/Input
    INSTALLS += target
    LIBS += -lqmmp
    PKGCONFIG += libarchive taglib
    QMAKE_CLEAN =$$PLUGINS_PREFIX/Input/libarc.so
}

win32 {
    LIBS += -lqmmp0 -larchive -ltag
}