-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfireGame.pro
72 lines (60 loc) · 1.18 KB
/
fireGame.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
#-------------------------------------------------
#
# Project created by QtCreator 2018-11-28T22:34:57
#
#-------------------------------------------------
QT += core gui sql \
multimedia \
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Piaret
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS
CONFIG += c++11
SOURCES += \
main.cpp \
bullet.cpp \
enemy.cpp \
game.cpp \
score.cpp \
health.cpp \
Player.cpp \
gameover.cpp \
life.cpp \
menubar.cpp \
bigenemy.cpp \
login.cpp \
loginform.cpp \
signup.cpp \
scorecard.cpp \
about.cpp
HEADERS += \
bullet.h \
enemy.h \
game.h \
score.h \
health.h \
Player.h \
gameover.h \
life.h \
menubar.h \
login.h \
loginform.h \
signup.h \
scorecard.h \
about.h \
bigenemy.h
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
res.qrc
FORMS += \
gameover.ui \
menubar.ui \
login.ui \
loginform.ui \
signup.ui \
scorecard.ui \
about.ui
DISTFILES +=