-
Notifications
You must be signed in to change notification settings - Fork 0
/
rescuers.pro
57 lines (49 loc) · 1.6 KB
/
rescuers.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
#================================================================================
# BACHELOR THESIS - AUGMENTED REALITY FOR DESK GAMES
#================================================================================
#
#
# Filename: rescuers.pro
# Date: 21. 10. 2017
# Subject: IBP - Bachelor Thesis
# Description: Main project file
# Author: Juraj Bačovčin
#
#--------------------------------------------------------------------------------
include (deployment.pri)
TEMPLATE = app
QT += qml quick
SOURCES += main.cpp
RESOURCES += qml.qrc
OTHER_FILES += \
javascript/theme.js \
javascript/gameboard.js \
img/background.jpg \
img/1st_edition_gameboard.jpg \
img/2nd_edition_gameboard.jpg \
img/gamesquare_fire.jpg \
img/gamesquare_questionmark.jpg \
img/gamesquare_realalert.jpg \
img/gamesquare_smoke.jpg \
img/gamewall_damaged.jpg \
img/gamewall_destroyed.jpg \
img/gamewall_opened.jpg \
img/gamewall_closed.jpg \
img/player.jpg \
img/icon.ico
DISTFILES += \
qml/TitleScreen.qml \
qml/MenuButton.qml \
qml/ErrorMessage.qml \
qml/SettingsScreen.qml \
qml/SettingsComboBox.qml \
qml/GameScreen.qml \
qml/GameButton.qml \
qml/GameSquare.qml \
qml/GameWall.qml \
qml/Player.qml \
qml/HealthBar.qml
#--------------------------------------------------------------------------------
# End of file rescuers.pro
#--------------------------------------------------------------------------------