aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/sid/sid.pro
blob: efb47ca18d625e02becebbfd7cda8fd5281b6dbe (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
include(../../plugins.pri)

HEADERS += decodersidfactory.h \
    decoder_sid.h \
    sidhelper.h \
    settingsdialog.h
SOURCES += decoder_sid.cpp \
    decodersidfactory.cpp \
    sidhelper.cpp \
    settingsdialog.cpp
TARGET = $$PLUGINS_PREFIX/Input/sid
QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libsid.so
INCLUDEPATH += ../../../
CONFIG += warn_on \
          plugin \
          link_pkgconfig
TEMPLATE = lib

TRANSLATIONS = translations/sid_plugin_it.ts \
               translations/sid_plugin_ru.ts \
               translations/sid_plugin_cs.ts \
               translations/sid_plugin_de.ts \
               translations/sid_plugin_zh_CN.ts \
               translations/sid_plugin_zh_TW.ts \
               translations/sid_plugin_uk_UA.ts \
               translations/sid_plugin_pl.ts \
               translations/sid_plugin_tr.ts \
               translations/sid_plugin_lt.ts \
               translations/sid_plugin_nl.ts \
               translations/sid_plugin_ja.ts

#RESOURCES = translations/translations.qrc

unix{
    isEmpty (LIB_DIR):LIB_DIR = /lib
    target.path = $$LIB_DIR/qmmp/Input
    INSTALLS += target
    QMAKE_LIBDIR += ../../../../lib
    LIBS += -lqmmp
    PKGCONFIG += libsidplayfp
}

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

FORMS += \
    settingsdialog.ui