-
Notifications
You must be signed in to change notification settings - Fork 1
/
Game.pro
104 lines (102 loc) · 2.26 KB
/
Game.pro
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
# -------------------------------------------------
# Project created by QtCreator 2009-05-07T18:37:02
# -------------------------------------------------
QT += xml \
opengl
equals(QT_MAJOR_VERSION, 5) {
QT += x11extras
}
unix: {
TARGET = ./bin/jag
target.path = /usr/games/
INSTALLS += target
datas.path = /usr/share/games/jag
datas.files = data
INSTALLS += datas
desktop.path = /usr/share/applications/
desktop.files = dist/jag.desktop
INSTALLS += desktop
icon.path = /usr/share/icons/hicolor/256x256/apps/
icon.files = dist/jag.png
INSTALLS += icon
appdata.path = /usr/share/appdata/
appdata.files = dist/jag.appdata.xml
INSTALLS += appdata
LIBS += -lXrandr
}
win32: {
TARGET = ../bin/jag
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 += -lX11 \
-lSDL \
-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 \
bighammertool.cpp \
bombtool.cpp \
gamesound.cpp \
menucontrol.cpp \
gameprofile.cpp \
thundertool.cpp \
smallhammertool.cpp \
clocktool.cpp \
gamestock.cpp \
randomkilltool.cpp \
mixertool.cpp \
unblocktool.cpp \
twintool.cpp \
displaywrapper.cpp \
gamebonus.cpp \
gamestatics.cpp \
gamestat.cpp \
gamebackground.cpp \
consttools.cpp \
gamexml.cpp \
scaler.cpp
HEADERS += gamewidget.h \
gamescene.h \
defines.h \
gameitem.h \
baseitem.h \
gamemenu.h \
gametools.h \
hammertool.h \
bighammertool.h \
bombtool.h \
gamesound.h \
gameprofile.h \
thundertool.h \
smallhammertool.h \
clocktool.h \
gamestock.h \
randomkilltool.h \
mixertool.h \
unblocktool.h \
twintool.h \
displaywrapper.h \
gamebonus.h \
scene_if.h \
gamestat.h \
gamebackground.h \
consttools.h \
scaler.h \
version.h
RESOURCES += resources.qrc
FORMS += menu.ui
TRANSLATIONS += ./lang/jag_ru.ts