author | unc0rr |
Sun, 04 May 2008 14:21:47 +0000 | |
changeset 903 | d4e5d8cbe449 |
parent 670 | b4cc7ac9011f |
child 1026 | a415f436fe3a |
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 |
|
670 | 11 |
QT += network svg xml |
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 \ |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
42 |
netserverslist.h \ |
555 | 43 |
chatwidget.h \ |
579 | 44 |
SDLs.h \ |
45 |
playrecordpage.h \ |
|
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
579
diff
changeset
|
46 |
hwconsts.h \ |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
47 |
selectWeapon.h \ |
670 | 48 |
itemNum.h \ |
49 |
input_ip.h |
|
297 | 50 |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
51 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
52 |
SOURCES += binds.cpp \ |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
461
diff
changeset
|
53 |
game.cpp \ |
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
54 |
main.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
55 |
hwform.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
56 |
team.cpp \ |
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
57 |
teamselect.cpp \ |
63 | 58 |
teamselhelper.cpp \ |
59 |
frameTeam.cpp \ |
|
84 | 60 |
vertScrollArea.cpp \ |
85
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
61 |
gameuiconfig.cpp \ |
44d9045b26ff
New GameCFGWidget. Now it's possible to set forts mode from ui
unc0rr
parents:
84
diff
changeset
|
62 |
ui_hwform.cpp \ |
87 | 63 |
gamecfgwidget.cpp \ |
93 | 64 |
pages.cpp \ |
132 | 65 |
SquareLabel.cpp \ |
164 | 66 |
hedgehogerWidget.cpp \ |
67 |
hwmap.cpp \ |
|
177 | 68 |
mapContainer.cpp \ |
187 | 69 |
tcpBase.cpp \ |
239 | 70 |
about.cpp \ |
297 | 71 |
proto.cpp \ |
314 | 72 |
fpsedit.cpp \ |
73 |
netserver.cpp \ |
|
420
6cdfc07dceed
netserver and netonnectedclient splited to different files
displacer
parents:
412
diff
changeset
|
74 |
netconnectedclient.cpp \ |
412 | 75 |
newnetclient.cpp \ |
76 |
netudpserver.cpp \ |
|
461 | 77 |
netudpwidget.cpp \ |
632
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
78 |
netwwwwidget.cpp \ |
5e09ae25729f
Half implement possibility for different backends of servers list
unc0rr
parents:
625
diff
changeset
|
79 |
netserverslist.cpp \ |
555 | 80 |
chatwidget.cpp \ |
579 | 81 |
SDLs.cpp \ |
82 |
playrecordpage.cpp \ |
|
597
ec5f057ab268
kdevelop project add, initial weapons scheme button
displacer
parents:
579
diff
changeset
|
83 |
hwconsts.cpp \ |
612
333d095319de
abstract class for items container (hedgehogs num, bullets, etc.)
displacer
parents:
597
diff
changeset
|
84 |
selectWeapon.cpp \ |
670 | 85 |
itemNum.cpp \ |
86 |
input_ip.cpp |
|
52
ae2950c5465c
- Rename frontend to hedgewars and compile it to engine directory
unc0rr
parents:
50
diff
changeset
|
87 |
|
442 | 88 |
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
|
89 |
|
63 | 90 |
RESOURCES += hedgewars.qrc |
555 | 91 |
|
92 |
LIBS += libSDL |