-
Notifications
You must be signed in to change notification settings - Fork 2
/
rasseki_game.pro
102 lines (91 loc) · 2.31 KB
/
rasseki_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
#-------------------------------------------------
#
# Project created by QtCreator 2018-05-12T10:56:33
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = rasseki_game
TEMPLATE = app
SOURCES += main.cpp \
libs/EasyBMP/EasyBMP.cpp \
creatures/hero.cpp \
surfaces/mapscanner.cpp \
surfaces/surface.cpp \
database/items_data.cpp \
database/session_data.cpp \
adapter/mapview.cpp \
adapter/journal.cpp \
adapter/libAdapter.cpp \
basic/movable.cpp \
basic/located.cpp \
basic/item.cpp \
artifacts/artifact.cpp \
artifacts/artifact_parser.cpp \
artifacts/artifact_factory.cpp \
artifacts/storage.cpp \
actions/action.cpp \
actions/action_factory.cpp \
actions/action_parser.cpp \
events/event.cpp \
events/event_factory.cpp \
events/event_parser.cpp \
windows/menuwindow.cpp \
windows/savewindow.cpp \
windows/gamewindow.cpp \
windows/loadwindow.cpp \
adapter/artifactlist.cpp
HEADERS += windows/menuwindow.h \
windows/savewindow.h \
windows/gamewindow.h \
windows/loadwindow.h \
windows/style.h \
actions/action.h \
actions/action_factory.h \
actions/actions_config.h \
events/event.h \
events/event_factory.h \
events/events_config.h \
basic/matrix.hpp \
basic/item.h \
basic/located.h \
basic/movable.h \
artifacts/artifact.h \
artifacts/storage.h \
artifacts/artifacts_config.h \
adapter/mapview.h \
adapter/journal.h \
adapter/libAdapter.h \
libs/EasyBMP/EasyBMP.h \
libs/json.hpp \
database/items_data.h \
database/session_data.h \
surfaces/mapscanner.h \
surfaces/surface.h \
creatures/hero.h \
configs/russian.h \
configs/paths.h \
configs/config.h \
adapter/artifactlist.h
FORMS += windows/menuwindow.ui \
windows/gamewindow.ui \
windows/loadwindow.ui \
windows/savewindow.ui
INCLUDEPATH += windows \
actions \
events \
artifacts \
basic \
adapter \
database \
surfaces \
creatures \
configs
RESOURCES += resources/resource.qrc
unix:LIBS += -lstdc++fs
QMAKE_CXXFLAGS += -g
DESTDIR = $$PWD
OBJECTS_DIR = $$PWD/temp/.obj
MOC_DIR = $$PWD/temp/.moc
RCC_DIR = $$PWD/temp/.rcc
UI_DIR = $$PWD/temp/.ui