blob: 5ceec72580c9dd3bb4233dd833f67137519808b1 (
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
|
include(../../plugins.pri)
TARGET = $$PLUGINS_PREFIX/Input/modplug
HEADERS += decodermodplugfactory.h \
decoder_modplug.h \
settingsdialog.h \
archivereader.h \
modplugmetadatamodel.h
SOURCES += decoder_modplug.cpp \
decodermodplugfactory.cpp \
settingsdialog.cpp \
archivereader.cpp \
modplugmetadatamodel.cpp
FORMS += settingsdialog.ui
RESOURCES = translations/translations.qrc
DEFINES += HAVE_STDINT_H \
HAVE_INTTYPES_H
unix {
target.path = $$PLUGIN_DIR/Input
INSTALLS += target
PKGCONFIG += libmodplug
}
win32 {
LIBS += -lmodplug
DEFINES -= UNICODE
}
|