-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcells.pro
58 lines (50 loc) · 1.38 KB
/
cells.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
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
HEADERS += \
field/field.hpp \
matrix/matrix.hpp \
object/object.hpp \
tile/tile.hpp \
generate_map/generatemap.hpp \
generate_objects/generateobjects.hpp \
do_step/dostep.hpp \
model/model.hpp \
item/item.hpp \
model_manager/modelmanager.hpp \
game_item/gameitem.hpp \
entity/entity.hpp \
config/tile_ids.hpp \
debug.h \
animation_state/animationstate.hpp \
qsfmlwidget/qsfmlwidget.hpp \
do_step/cachedfunction.hpp \
gamewindow/gamewindow.hpp \
lib/qcustomplot.h \
lib/sol.hpp
SOURCES += \
field/field.cpp \
object/object.cpp \
do_step/dostep.cpp \
tile/tile.cpp \
generate_map/generatemap.cpp \
generate_objects/generateobjects.cpp \
main.cpp \
model/model.cpp \
item/item.cpp \
model_manager/modelmanager.cpp \
game_item/gameitem.cpp \
entity/entity.cpp \
animation_state/animationstate.cpp \
qsfmlwidget/qsfmlwidget.cpp \
gamewindow/gamewindow.cpp \
lib/qcustomplot.cpp
LIBS += -lX11
LIBS += -lsfml-graphics -lsfml-window -lsfml-system
QMAKE_CXX = g++-6
QMAKE_CXXFLAGS += -std=c++14 -O3 -fomit-frame-pointer -march=corei7
INCLUDEPATH += /usr/include/lua5.3
LIBS += -llua5.3
DISTFILES += \
config/id_manager.lua \
config/mm_config.lua \
config/window_config.lua