blob: 49402f13636e4c10c9940ad25a67a6bdfeaf56c6 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Input/sid
HEADERS += decodersidfactory.h \
decoder_sid.h \
sidhelper.h \
settingsdialog.h
SOURCES += decoder_sid.cpp \
decodersidfactory.cpp \
sidhelper.cpp \
settingsdialog.cpp
RESOURCES = translations/translations.qrc
FORMS += settingsdialog.ui
unix{
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
PKGCONFIG += libsidplayfp
}
win32 {
LIBS += -lsidplayfp.dll
}
|