author | displacer |
Tue, 26 Sep 2006 20:24:32 +0000 | |
changeset 172 | 5294ada3910b |
parent 164 | 92cff18a3ab6 |
child 177 | c67c15e6fae3 |
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 |
|
11 |
QT += network |
|
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 \ |
|
31 |
mapContainer.h |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
32 |
|
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
33 |
SOURCES += game.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
34 |
main.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
35 |
hwform.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
36 |
team.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
37 |
netclient.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
38 |
teamselect.cpp \ |
63 | 39 |
teamselhelper.cpp \ |
40 |
frameTeam.cpp \ |
|
84 | 41 |
vertScrollArea.cpp \ |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
42 |
gameuiconfig.cpp \ |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
43 |
ui_hwform.cpp \ |
87 | 44 |
gamecfgwidget.cpp \ |
93 | 45 |
pages.cpp \ |
132 | 46 |
SquareLabel.cpp \ |
164 | 47 |
hedgehogerWidget.cpp \ |
48 |
hwmap.cpp \ |
|
49 |
mapContainer.cpp |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
50 |
|
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
51 |
TRANSLATIONS += translations/hedgewars_ru.ts |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
52 |
|
63 | 53 |
RESOURCES += hedgewars.qrc |