author | unc0rr |
Sat, 01 Dec 2007 12:38:15 +0000 | |
changeset 625 | 373353eaa742 |
parent 612 | 333d095319de |
child 632 | 5e09ae25729f |
permissions | -rw-r--r-- |
21 | 1 |
TEMPLATE = app |
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
2 |
TARGET = hedgewars |
21 | 3 |
DEPENDPATH += . |
4 |
INCLUDEPATH += . |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
93
diff
changeset
|
5 |
DESTDIR = ../bin |
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
6 |
|
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
7 |
win32 { |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
8 |
RC_FILE = ./res/hedgewars.rc |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
9 |
} |
21 | 10 |
|
221 | 11 |
QT += network svg |
21 | 12 |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
13 |
HEADERS += binds.h \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
14 |
game.h \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
15 |
hwform.h \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
16 |
sdlkeys.h \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
17 |
team.h \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
18 |
teamselect.h \ |
63 | 19 |
teamselhelper.h \ |
20 |
frameTeam.h \ |
|
84 | 21 |
vertScrollArea.h \ |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
22 |
gameuiconfig.h \ |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
23 |
ui_hwform.h \ |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
85
diff
changeset
|
24 |
gamecfgwidget.h \ |
87 | 25 |
predefteams.h \ |
93 | 26 |
pages.h \ |
132 | 27 |
SquareLabel.h \ |
164 | 28 |
hedgehogerWidget.h \ |
29 |
hwmap.h \ |
|
177 | 30 |
mapContainer.h \ |
187 | 31 |
tcpBase.h \ |
208 | 32 |
about.h \ |
239 | 33 |
KB.h \ |
297 | 34 |
proto.h \ |
314 | 35 |
fpsedit.h \ |
36 |
netserver.h \ |
|
420
6cdfc07dceed
netserver and netonnectedclient splited to different files
displacer
parents:
412
diff
changeset
|
37 |
netconnectedclient.h \ |
412 | 38 |
newnetclient.h \ |
39 |
netudpserver.h \ |
|
461 | 40 |
netudpwidget.h \ |
625 | 41 |
netwwwwidget.h \ |
555 | 42 |
chatwidget.h \ |
579 | 43 |
SDLs.h \ |
44 |
playrecordpage.h \ |
|
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
579
diff
changeset
|
45 |
hwconsts.h \ |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
46 |
selectWeapon.h \ |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
47 |
itemNum.h |
297 | 48 |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
49 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
50 |
SOURCES += binds.cpp \ |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
461
diff
changeset
|
51 |
game.cpp \ |
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
52 |
main.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
53 |
hwform.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
54 |
team.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
55 |
teamselect.cpp \ |
63 | 56 |
teamselhelper.cpp \ |
57 |
frameTeam.cpp \ |
|
84 | 58 |
vertScrollArea.cpp \ |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
59 |
gameuiconfig.cpp \ |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
60 |
ui_hwform.cpp \ |
87 | 61 |
gamecfgwidget.cpp \ |
93 | 62 |
pages.cpp \ |
132 | 63 |
SquareLabel.cpp \ |
164 | 64 |
hedgehogerWidget.cpp \ |
65 |
hwmap.cpp \ |
|
177 | 66 |
mapContainer.cpp \ |
187 | 67 |
tcpBase.cpp \ |
239 | 68 |
about.cpp \ |
297 | 69 |
proto.cpp \ |
314 | 70 |
fpsedit.cpp \ |
71 |
netserver.cpp \ |
|
420
6cdfc07dceed
netserver and netonnectedclient splited to different files
displacer
parents:
412
diff
changeset
|
72 |
netconnectedclient.cpp \ |
412 | 73 |
newnetclient.cpp \ |
74 |
netudpserver.cpp \ |
|
461 | 75 |
netudpwidget.cpp \ |
625 | 76 |
netwwwwidget.h \ |
555 | 77 |
chatwidget.cpp \ |
579 | 78 |
SDLs.cpp \ |
79 |
playrecordpage.cpp \ |
|
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
579
diff
changeset
|
80 |
hwconsts.cpp \ |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
81 |
selectWeapon.cpp \ |
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
82 |
itemNum.cpp |
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
83 |
|
442 | 84 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ru.ts |
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
85 |
|
63 | 86 |
RESOURCES += hedgewars.qrc |
555 | 87 |
|
88 |
LIBS += libSDL |