author | unc0rr |
Sun, 21 Jan 2007 21:31:10 +0000 | |
changeset 355 | 40c68869899e |
parent 314 | 83773ccf4f09 |
child 412 | 2ddcc3e3e644 |
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 |
netclient.h \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
19 |
teamselect.h \ |
63 | 20 |
teamselhelper.h \ |
21 |
frameTeam.h \ |
|
84 | 22 |
vertScrollArea.h \ |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
23 |
gameuiconfig.h \ |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
24 |
ui_hwform.h \ |
86
664b536a1c27
Predefined teams, 'simple game' doesn't need to create team
unc0rr
parents:
85
diff
changeset
|
25 |
gamecfgwidget.h \ |
87 | 26 |
predefteams.h \ |
93 | 27 |
pages.h \ |
132 | 28 |
SquareLabel.h \ |
164 | 29 |
hedgehogerWidget.h \ |
30 |
hwmap.h \ |
|
177 | 31 |
mapContainer.h \ |
187 | 32 |
tcpBase.h \ |
208 | 33 |
about.h \ |
239 | 34 |
KB.h \ |
297 | 35 |
proto.h \ |
314 | 36 |
fpsedit.h \ |
37 |
netserver.h \ |
|
38 |
newnetclient.h |
|
297 | 39 |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
40 |
|
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
41 |
SOURCES += game.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
42 |
main.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
43 |
hwform.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
44 |
team.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
45 |
netclient.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
46 |
teamselect.cpp \ |
63 | 47 |
teamselhelper.cpp \ |
48 |
frameTeam.cpp \ |
|
84 | 49 |
vertScrollArea.cpp \ |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
50 |
gameuiconfig.cpp \ |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
51 |
ui_hwform.cpp \ |
87 | 52 |
gamecfgwidget.cpp \ |
93 | 53 |
pages.cpp \ |
132 | 54 |
SquareLabel.cpp \ |
164 | 55 |
hedgehogerWidget.cpp \ |
56 |
hwmap.cpp \ |
|
177 | 57 |
mapContainer.cpp \ |
187 | 58 |
tcpBase.cpp \ |
239 | 59 |
about.cpp \ |
297 | 60 |
proto.cpp \ |
314 | 61 |
fpsedit.cpp \ |
62 |
netserver.cpp \ |
|
63 |
newnetclient.cpp |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
64 |
|
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
65 |
TRANSLATIONS += translations/hedgewars_ru.ts |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
66 |
|
63 | 67 |
RESOURCES += hedgewars.qrc |