blob: 73fe7c1fd9a46a3c4107d4bb6ea70aed52d797d7 (
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)
HEADERS += decodergmefactory.h \
decoder_gme.h \
gmehelper.h \
settingsdialog.h
SOURCES += decoder_gme.cpp \
decodergmefactory.cpp \
gmehelper.cpp \
settingsdialog.cpp
FORMS += settingsdialog.ui
TARGET = $$PLUGINS_PREFIX/Input/gme
QMAKE_CLEAN = $$PLUGINS_PREFIX/Input/libgme.so
RESOURCES = translations/translations.qrc
LIBS += -lqmmp
unix{
target.path = $$LIB_DIR/qmmp/Input
INSTALLS += target
LIBS += -L/usr/lib \
-L/usr/local/lib \
-I/usr/include \
-I/usr/local/include \
-lgme
}
win32 {
LIBS += -lgme.dll
}
|