-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPWlabI2.pro
52 lines (46 loc) · 1.12 KB
/
PWlabI2.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
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS += -std=c++11 -march=corei7
LIBS += -lsfml-graphics -lsfml-window -lsfml-system
SOURCES += main.cpp \
src/map.cpp \
src/object.cpp \
src/physx.cpp \
src/PointXY.cpp \
src/tests.cpp \
src/VectorXY.cpp \
src/utils.cpp \
src/GameDomain.cpp \
src/session.cpp \
src/gfx.cpp \
src/engine.cpp \
drivers/src/Actor.cpp \
drivers/src/EngineStart.cpp \
drivers/src/Intro.cpp \
drivers/src/PlayerController.cpp \
drivers/src/Static.cpp \
drivers/src/Hud.cpp
include(deployment.pri)
qtcAddDeployment()
HEADERS += \
include/map.h \
include/misc.h \
include/object.h \
include/physx.h \
include/PointXY.h \
include/tests.h \
include/VectorXY.h \
include/defines.h \
include/utils.h \
include/GameDomain.h \
include/session.h \
include/gfx.h \
include/engine.h \
drivers/include/Actor.h \
drivers/include/EngineStart.h \
drivers/include/Intro.h \
drivers/include/PlayerController.h \
drivers/include/Static.h \
drivers/include/Hud.h