-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrogue.pro
executable file
·76 lines (67 loc) · 1.74 KB
/
rogue.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-05-11T11:35:52
#
#-------------------------------------------------
QT += core gui
CONFIG += c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Rogue
TEMPLATE = app
SOURCES += main.cpp\
gui/autosizetableview.cpp \
gui/mainwindow.cpp \
gui/mapview.cpp \
gui/mapsizedialog.cpp \
gui/playerinfowidget.cpp \
items/abstractcollectibleitem.cpp \
items/abstractcombatitem.cpp \
items/abstractmapitem.cpp \
items/abstractnpc.cpp \
items/gold.cpp \
items/monster.cpp \
items/obstacle.cpp \
items/player.cpp \
mechanics/dice.cpp \
mechanics/moveset.cpp \
mechanics/playerlog.cpp \
world/dungeon.cpp \
world/dungeongenerator.cpp \
world/mapmodel.cpp \
gui/playerlogwidget.cpp \
world/floortile.cpp \
world/abstractmaptile.cpp
HEADERS += gui/mainwindow.h \
gui/autosizetableview.h \
gui/mainwindow.h \
gui/mapview.h \
gui/mapsizedialog.h \
gui/playerinfowidget.h \
items/abstractcollectibleitem.h \
items/abstractcombatitem.h \
items/abstractmapitem.h \
items/abstractnpc.h \
items/gold.h \
items/monster.h \
items/obstacle.h \
items/player.h \
mechanics/constants.h \
mechanics/dice.h \
mechanics/moveset.h \
mechanics/playerlog.h \
world/dungeon.h \
world/dungeongenerator.h \
world/mapmodel.h \
gui/playerlogwidget.h \
world/floortile.h \
world/abstractmaptile.h
FORMS += gui/mainwindow.ui \
gui/mapsizedialog.ui \
gui/playerinfowidget.ui
INCLUDEPATH += gui\
items\
mechanics\
world
DISTFILES +=
RESOURCES += \
Resources/images.qrc