blob: 983b625928a276dc21d22711aaf6a93b074c449f (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
|
include(../../plugins.pri)
contains(CONFIG, WITH_PROJECTM20){
DEFINES += PROJECTM_20
}
TARGET =$$PLUGINS_PREFIX/Visual/projectm
QMAKE_CLEAN =$$PLUGINS_PREFIX/Visual/libprojectm.so
HEADERS += projectmwidget.h \
visualprojectmfactory.h \
projectmplugin.h \
projectmwrapper.h
SOURCES += projectmplugin.cpp \
visualprojectmfactory.cpp \
projectmwidget.cpp \
projectmwrapper.cpp
INCLUDEPATH += ../../../
CONFIG += warn_on \
plugin \
link_pkgconfig
TEMPLATE = lib
QMAKE_LIBDIR += ../../../../lib
QT += opengl
TRANSLATIONS = translations/projectm_plugin_cs.ts \
translations/projectm_plugin_de.ts \
translations/projectm_plugin_zh_CN.ts \
translations/projectm_plugin_zh_TW.ts \
translations/projectm_plugin_pl.ts \
translations/projectm_plugin_ru.ts \
translations/projectm_plugin_uk_UA.ts \
translations/projectm_plugin_it.ts \
translations/projectm_plugin_tr.ts \
translations/projectm_plugin_lt.ts \
translations/projectm_plugin_nl.ts \
translations/projectm_plugin_ja.ts \
translations/projectm_plugin_es.ts \
translations/projectm_plugin_sr_BA.ts \
translations/projectm_plugin_sr_RS.ts
RESOURCES = translations/translations.qrc
unix {
PKGCONFIG += libprojectM
isEmpty(LIB_DIR):LIB_DIR = /lib
target.path = $$LIB_DIR/qmmp/Visual
INSTALLS += target
LIBS += -lqmmp -L/usr/lib -I/usr/include
#projectM config path
PROJECTM_CONFIG_FILES = /usr/share/projectM/config.inp \
/usr/local/share/projectM/config.inp
for(path, PROJECTM_CONFIG_FILES) {
exists($$path) {
message ("found projectm configuration: "$$path)
DEFINES += PROJECTM_CONFIG=\\\"$$path\\\"
}
}
}
win32 {
QMAKE_LIBDIR += ../../../../bin
LIBS += -lqmmp0 -lprojectM.dll
}
|