author | unc0rr |
Fri, 17 Apr 2009 20:13:46 +0000 | |
changeset 2002 | 37c71f5983c9 |
parent 1943 | 03dcac72692b |
child 2003 | 41b3d00949ca |
permissions | -rw-r--r-- |
1369 | 1 |
TEMPLATE = app |
2 |
TARGET = hedgewars |
|
3 |
DEPENDPATH += . |
|
4 |
INCLUDEPATH += . |
|
5 |
DESTDIR = ../bin |
|
6 |
||
7 |
win32 { |
|
8 |
RC_FILE = ./res/hedgewars.rc |
|
9 |
} |
|
10 |
||
2002 | 11 |
macx{ |
12 |
CONFIG += x86 |
|
13 |
} |
|
1369 | 14 |
QT += network svg xml |
15 |
||
16 |
HEADERS += binds.h \ |
|
1673 | 17 |
game.h \ |
18 |
hwform.h \ |
|
19 |
sdlkeys.h \ |
|
20 |
team.h \ |
|
21 |
teamselect.h \ |
|
22 |
teamselhelper.h \ |
|
23 |
frameTeam.h \ |
|
24 |
vertScrollArea.h \ |
|
25 |
gameuiconfig.h \ |
|
26 |
ui_hwform.h \ |
|
27 |
gamecfgwidget.h \ |
|
28 |
predefteams.h \ |
|
29 |
pages.h \ |
|
30 |
SquareLabel.h \ |
|
31 |
hedgehogerWidget.h \ |
|
32 |
hwmap.h \ |
|
33 |
mapContainer.h \ |
|
34 |
tcpBase.h \ |
|
35 |
about.h \ |
|
36 |
KB.h \ |
|
37 |
proto.h \ |
|
38 |
fpsedit.h \ |
|
39 |
netserver.h \ |
|
40 |
newnetclient.h \ |
|
41 |
netudpserver.h \ |
|
42 |
netudpwidget.h \ |
|
43 |
netserverslist.h \ |
|
44 |
chatwidget.h \ |
|
45 |
SDLs.h \ |
|
46 |
playrecordpage.h \ |
|
47 |
hwconsts.h \ |
|
48 |
selectWeapon.h \ |
|
49 |
itemNum.h \ |
|
50 |
input_ip.h \ |
|
51 |
igbox.h \ |
|
52 |
weaponItem.h \ |
|
1943 | 53 |
statsPage.h \ |
54 |
misc.h |
|
1369 | 55 |
|
56 |
SOURCES += binds.cpp \ |
|
1673 | 57 |
game.cpp \ |
58 |
main.cpp \ |
|
59 |
hwform.cpp \ |
|
60 |
team.cpp \ |
|
61 |
teamselect.cpp \ |
|
62 |
teamselhelper.cpp \ |
|
63 |
frameTeam.cpp \ |
|
64 |
vertScrollArea.cpp \ |
|
65 |
gameuiconfig.cpp \ |
|
66 |
ui_hwform.cpp \ |
|
67 |
gamecfgwidget.cpp \ |
|
68 |
pages.cpp \ |
|
69 |
SquareLabel.cpp \ |
|
70 |
hedgehogerWidget.cpp \ |
|
71 |
hwmap.cpp \ |
|
72 |
mapContainer.cpp \ |
|
73 |
tcpBase.cpp \ |
|
74 |
about.cpp \ |
|
75 |
proto.cpp \ |
|
76 |
fpsedit.cpp \ |
|
77 |
netserver.cpp \ |
|
78 |
newnetclient.cpp \ |
|
79 |
netudpserver.cpp \ |
|
80 |
netudpwidget.cpp \ |
|
81 |
netserverslist.cpp \ |
|
82 |
chatwidget.cpp \ |
|
83 |
SDLs.cpp \ |
|
84 |
playrecordpage.cpp \ |
|
85 |
hwconsts.cpp \ |
|
86 |
selectWeapon.cpp \ |
|
87 |
itemNum.cpp \ |
|
88 |
input_ip.cpp \ |
|
89 |
igbox.cpp \ |
|
90 |
weaponItem.cpp \ |
|
1943 | 91 |
statsPage.cpp \ |
92 |
misc.cpp |
|
1369 | 93 |
|
94 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_bg.ts |
|
95 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_de.ts |
|
1422 | 96 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_cs.ts |
1674
b6d609815378
Add English translation (needed to support plural forms)
unc0rr
parents:
1673
diff
changeset
|
97 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_en.ts |
1484 | 98 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_es.ts |
1796 | 99 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_fi.ts |
1369 | 100 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_fr.ts |
101 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_it.ts |
|
1699 | 102 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ja.ts |
1369 | 103 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pl.ts |
104 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pt_BR.ts |
|
105 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ru.ts |
|
106 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_sk.ts |
|
1484 | 107 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_sv.ts |
1803 | 108 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_tr_TR.ts |
1369 | 109 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_uk.ts |
1550 | 110 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_zh_CN.ts |
1583 | 111 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_zh_TW.ts |
1369 | 112 |
|
113 |
RESOURCES += hedgewars.qrc |
|
114 |
||
2002 | 115 |
!macx{ |
1369 | 116 |
LIBS += libSDL |
2002 | 117 |
}else{ |
118 |
LIBS += -framework SDL -framework SDL_mixer -framework Ogg -framework Vorbis |
|
119 |
} |