-
Notifications
You must be signed in to change notification settings - Fork 1
/
rescuerblaster.pro
58 lines (50 loc) · 1.22 KB
/
rescuerblaster.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
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
CONFIG -= qt
CONFIG -= linux # qtcreator adds linux even if shouldn't, so we remove
QT -= core
QT -= gui
CONFIG += linux
#CONFIG += raspberry
#CONFIG += android
#CONFIG += win32
#CONFIG += playstation2
#CONFIG += dingux
#CONFIG += open_pandora
#CONFIG += wii
#CONFIG += dreamcast
#CONFIG += macosx
linux {
TARGET = rescueblaster
LIBS = -L/usr/X11R6/lib -lX11 -lSDL2_mixer -lSDL2_image -lSDL2_ttf -lSDL2_gfx `sdl2-config --libs` -ldl
INCLUDES = -I/usr/include/SDL \
-I/usr/include \
-I. \
-I./include \
-L/usr/lib
QMAKE_CCFLAGS += -DLINUX -DPC -Wno-reorder -Wno-ignored-qualifiers -fpermissive
QMAKE_CXXFLAGS += -DLINUX -DPC -Wno-reorder -Wno-ignored-qualifiers -fpermissive
}
SOURCES += \
main.cpp \
graphics/graphlib.cpp \
input/inputlib.cpp \
playerlib.cpp \
timerlib.cpp \
fpscontrol.cpp \
mediator.cpp
HEADERS += \
graphics/graphlib.h \
input/inputlib.h \
defines.h \
playerlib.h \
timerlib.h \
fpscontrol.h \
file/file_map.h \
file/file_map.h \
defines.h \
file/file_io.h \
mediator.h \
file/file_stage.h