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