This repository was archived by the owner on Jan 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvisualizer.pro
More file actions
64 lines (62 loc) · 1.49 KB
/
visualizer.pro
File metadata and controls
64 lines (62 loc) · 1.49 KB
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
INCLUDEPATH += ./interfaces/ \
./lib \
./common \
.
DEPENDPATH += ./common \
./lib/resourcemanager/
PPATHS += ./lib/gameobject/ \
./lib/manager/ \
./lib/optionsmanager/ \
./lib/renderer/ \
./lib/resourcemanager/ \
./lib/timemanager/ \
./lib/gameobject/ \
./lib/gui/ \
./lib/beanstalker/ \
./common/ \
./common/glew/
SOURCES += main.cpp \
./lib/gameobject/*.cpp \
./lib/optionsmanager/*.cpp \
./lib/gui/*.cpp \
./lib/games/*.cpp \
./lib/beanstalker/*.cpp \
./lib/timemanager/*.cpp \
./lib/resourcemanager/*.cpp \
./lib/selectionrender/*.cpp \
./lib/decompress/*.c \
./lib/renderer/*.cpp \
./common/*.cpp \
./lib/animationengine/*.cpp \
./common/glew/*.c
MOC = moc
HEADERS += ./lib/manager/*.h \
./lib/timemanager/*.h \
./lib/gameobject/*.h \
./lib/optionsmanager/*.h \
./lib/renderer/*.h \
./lib/beanstalker/*.h \
./lib/gui/*.h \
./lib/selectionrender/*.h \
./lib/resourcemanager/*.h \
./lib/animationengine/*.h \
./lib/decompress/*.h \
./common/*.h \
./interfaces/*.h \
./common/glew/*.h
win32: {
DEFINES += STATIC_BUILD
LIBS += -L../MegaMinerAI-14/plugins
QTPLUGIN += Plants
} else {
QMAKE_CFLAGS_DEBUG += -rdynamic
QMAKE_CXXFLAGS_DEBUG += -rdynamic
QMAKE_LFLAGS_DEBUG += -rdynamic
LIBS += -lGLU
}
QMAKE_CXXFLAGS += -std=c++0x
QMAKE_CXXFLAGS_DEBUG += -std=c++0x
CONFIG += release
macx:CONFIG -= app_bundle
QT += opengl network xml
DEFINES += GLEW_STATIC