aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/sid/sid.pro
blob: d4661caa2118703a92bbde0f7c16ced34adabe4f (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
include(../../plugins.pri)

HEADERS += decodersidfactory.h \
    decoder_sid.h \
    sidhelper.h \
    settingsdialog.h
SOURCES += decoder_sid.cpp \
    decodersidfactory.cpp \
    sidhelper.cpp \
    settingsdialog.cpp
FORMS += \
    settingsdialog.ui


TARGET = $$PLUGINS_PREFIX/Input/sid
QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libsid.so
CONFIG += warn_on \
          plugin \
          link_pkgconfig
TEMPLATE = lib

RESOURCES = translations/translations.qrc

unix{
    target.path = $$LIB_DIR/qmmp/Input
    INSTALLS += target
    LIBS += -lqmmp
    PKGCONFIG += libsidplayfp
}

win32 {
    HEADERS += ../../../../src/qmmp/metadatamodel.h \
               ../../../../src/qmmp/decoderfactory.h
    LIBS += -lqmmp0 -lsidplayfp.dll
}