forked from jmimu/FITD
-
Notifications
You must be signed in to change notification settings - Fork 2
/
fitd.pro
102 lines (95 loc) · 1.95 KB
/
fitd.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
TEMPLATE = app
CONFIG += debug
CONFIG -= qt
QMAKE_CFLAGS += -Wno-unused-variable -Wno-unused-parameter -Wunused-but-set-parameter -Wunused-but-set-variable
DEFINES += INTERNAL_DEBUGGER
SOURCES += \
src/zv.c \
src/videoMode.c \
src/version.c \
src/vars.c \
src/unpack.c \
src/track.c \
src/freezetime.c \
src/threadCode.c \
src/tatou.c \
src/systemMenu.c \
src/startupMenu.c \
src/sequence.c \
src/screen.c \
src/save.c \
src/room.c \
src/renderer.c \
src/polys.c \
src/pak.c \
src/osystemSDL_GL.c \
src/osystemSDL.c \
src/object.c \
src/music.c \
src/mainLoop.c \
src/main.c \
src/lines.c \
src/lifeMacroTable.c \
src/life_2.c \
src/life.c \
src/inventory.c \
src/input.c \
src/hqr.c \
src/font.c \
src/fmopl.c \
src/floor.c \
src/fileAccess.c \
src/evalVar.c \
src/debugger.c \
src/debugFont.c \
src/cosTable.c \
src/bmp.c \
src/animAction.c \
src/anim.c \
src/aitdBox.c \
src/actorList.c
HEADERS += \
src/zv.h \
src/videoMode.h \
src/version.h \
src/vars.h \
src/unpack.h \
src/track.h \
src/freezetime.h \
src/threadCode.h \
src/tatou.h \
src/systemMenu.h \
src/startupMenu.h \
src/screen.h \
src/save.h \
src/room.h \
src/renderer.h \
src/pak.h \
src/osystem.h \
src/object.h \
src/music.h \
src/mainLoop.h \
src/main.h \
src/life_2.h \
src/life.h \
src/inventory.h \
src/input.h \
src/hqr.h \
src/font.h \
src/fmopl.h \
src/floor.h \
src/fileAccess.h \
src/evalVar.h \
src/debugger.h \
src/debugFont.h \
src/common.h \
src/bmp.h \
src/animAction.h \
src/anim.h \
src/aitdBox.h \
src/actorList.h \
src/types.h
LIBS += -lSDL -lSDL_mixer -lGL -lGLU -lz -L/usr/lib/i386-linux-gnu
INCLUDEPATH += "/usr/include/SDL"
QMAKE_LFLAGS += -m32
QMAKE_CFLAGS += -m32