forked from SanskritFritz/bubble-chains
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGame.pro
More file actions
107 lines (107 loc) · 2.41 KB
/
Copy pathGame.pro
File metadata and controls
107 lines (107 loc) · 2.41 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# -------------------------------------------------
# Project created by QtCreator 2009-05-07T18:37:02
# -------------------------------------------------
QT += xml \
opengl
unix: {
TARGET = ./bin/chains
target.path = /usr/bin/
INSTALLS += target
datas.path = /usr/share/chains
datas.files = data
INSTALLS += datas
LIBS += -lXrandr
}
win32: {
TARGET = ../bin/chains
INCLUDEPATH += winlibs/SDL-1.2.13/include/SDL \
winlibs/SDL_mixer-1.2.8
LIBS += -Lwinlibs/SDL-1.2.13/lib \
-Lwinlibs/SDL_mixer-1.2.8/lib \
-Lwinlibs/libs \
-lSDL.dll
RC_FILE = res.rc
}
LIBS += -lSDL -lX11 \
-lSDL_mixer
TEMPLATE = app
SOURCES += main.cpp \
gamewidget.cpp \
gamescene.cpp \
gameitem.cpp \
gamepaint.cpp \
gamecontrol.cpp \
baseitem.cpp \
gamemenu.cpp \
gametools.cpp \
hammertool.cpp \
bombtool.cpp \
gamesound.cpp \
menucontrol.cpp \
gameprofile.cpp \
thundertool.cpp \
clocktool.cpp \
gamestock.cpp \
randomkilltool.cpp \
mixertool.cpp \
twintool.cpp \
displaywrapper.cpp \
gamebonus.cpp \
gamestatics.cpp \
gamestat.cpp \
gamebackground.cpp \
consttools.cpp \
gamexml.cpp \
scaler.cpp \
gametargetcontrol.cpp \
gametargets.cpp \
progressbar.cpp \
sceneprivate.cpp \
gamepanel.cpp \
gamepanelcontrol.cpp \
gamedialogs.cpp \
gamebutton.cpp \
hintcontrol.cpp \
gamehintcontrol.cpp \
particlecontrol.cpp \
helpform.cpp
HEADERS += gamewidget.h \
gamescene.h \
defines.h \
gameitem.h \
baseitem.h \
gamemenu.h \
gametools.h \
hammertool.h \
bombtool.h \
gamesound.h \
gameprofile.h \
thundertool.h \
clocktool.h \
gamestock.h \
randomkilltool.h \
mixertool.h \
twintool.h \
displaywrapper.h \
gamebonus.h \
scene_if.h \
gamebackground.h \
consttools.h \
scaler.h \
sceneprivate.h \
gametargetcontrol.h \
gametargets.h \
progressbar.h \
gamepanel.h \
gamepanelcontrol.h \
gamedialogs.h \
gamebutton.h \
hintcontrol.h \
gamehintcontrol.h \
particlecontrol.h \
helpform.h
RESOURCES += resources.qrc
FORMS += menu.ui \
helpform.ui
TRANSLATIONS += ./data/lang/chains_ru.ts
OTHER_FILES += style/style.css