author | koda |
Sat, 26 Sep 2009 15:44:34 +0000 | |
changeset 2394 | 0f8de781fc34 |
parent 2093 | 485e084cedc4 |
child 2395 | d01d3bf3e1de |
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{ |
2394 | 12 |
CONFIG += x86 |
13 |
#CONFIG += x86 ppc x86_64 ppc64 |
|
2002 | 14 |
} |
2003 | 15 |
|
1369 | 16 |
QT += network svg xml |
17 |
||
2394 | 18 |
HEADERS += KB.h SDLs.h SquareLabel.h \ |
19 |
about.h ammoSchemeModel.h \ |
|
20 |
bgwidget.h binds.h \ |
|
1673 | 21 |
chatwidget.h \ |
2394 | 22 |
fpsedit.h frameTeam.h \ |
23 |
game.h gamecfgwidget.h gameuiconfig.h \ |
|
24 |
hats.h hedgehogerWidget.h hwconsts.h hwform.h hwmap.h \ |
|
25 |
igbox.h input_ip.h itemNum.h \ |
|
26 |
mapContainer.h misc.h \ |
|
27 |
namegen.h netregister.h netserver.h netserverslist.h \ |
|
28 |
netudpserver.h netudpwidget.h newnetclient.h \ |
|
29 |
pages.h playrecordpage.h predefteams.h proto.h \ |
|
30 |
sdlkeys.h selectWeapon.h statsPage.h \ |
|
31 |
tcpBase.h team.h teamselect.h teamselhelper.h togglebutton.h \ |
|
32 |
ui_hwform.h \ |
|
33 |
vertScrollArea.h \ |
|
34 |
weaponItem.h |
|
35 |
||
1369 | 36 |
|
2394 | 37 |
SOURCES += SDLs.cpp SquareLabel.cpp \ |
38 |
about.cpp ammoSchemeModel.cpp \ |
|
39 |
bgwidget.cpp binds.cpp \ |
|
40 |
chatwidget.cpp \ |
|
41 |
fpsedit.cpp frameTeam.cpp \ |
|
42 |
game.cpp gamecfgwidget.cpp gameuiconfig.cpp \ |
|
43 |
hats.cpp hedgehogerWidget.cpp hwconsts.cpp hwform.cpp hwmap.cpp \ |
|
44 |
igbox.cpp input_ip.cpp itemNum.cpp \ |
|
45 |
main.cpp mapContainer.cpp misc.cpp \ |
|
46 |
namegen.cpp netregister.cpp netserver.cpp netserverslist.cpp \ |
|
47 |
netudpserver.cpp netudpwidget.cpp newnetclient.cpp \ |
|
48 |
pages.cpp playrecordpage.cpp proto.cpp \ |
|
49 |
selectWeapon.cpp statsPage.cpp \ |
|
50 |
tcpBase.cpp team.cpp teamselect.cpp teamselhelper.cpp togglebutton.cpp \ |
|
1673 | 51 |
ui_hwform.cpp \ |
2394 | 52 |
vertScrollArea.cpp \ |
53 |
weaponItem.cpp |
|
1369 | 54 |
|
55 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_bg.ts |
|
56 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_de.ts |
|
1422 | 57 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_cs.ts |
1674
b6d609815378
Add English translation (needed to support plural forms)
unc0rr
parents:
1673
diff
changeset
|
58 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_en.ts |
1484 | 59 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_es.ts |
1796 | 60 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_fi.ts |
1369 | 61 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_fr.ts |
62 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_it.ts |
|
1699 | 63 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ja.ts |
1369 | 64 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pl.ts |
65 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pt_BR.ts |
|
2093
485e084cedc4
Portugese (european) translation, Tiy's "minefield" scheme/wepset, disable vampirism, update translations
nemo
parents:
2003
diff
changeset
|
66 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_pt_PT.ts |
1369 | 67 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_ru.ts |
68 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_sk.ts |
|
1484 | 69 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_sv.ts |
1803 | 70 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_tr_TR.ts |
1369 | 71 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_uk.ts |
1550 | 72 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_zh_CN.ts |
1583 | 73 |
TRANSLATIONS += ../share/hedgewars/Data/Locale/hedgewars_zh_TW.ts |
1369 | 74 |
|
75 |
RESOURCES += hedgewars.qrc |
|
76 |
||
2002 | 77 |
!macx{ |
2394 | 78 |
LIBS += -lSDL -lopenalbridge |
2002 | 79 |
}else{ |
2394 | 80 |
LIBS += -framework SDL -framework OpenAL -framework Ogg -framework Vorbis -lopenalbridge -framework Sparkle |
81 |
INCLUDEPATH += /Library/Frameworks/SDL.framework/Headers |
|
82 |
SOURCES += AutoUpdater.cpp CocoaInitializer.mm SparkleAutoUpdater.mm |
|
83 |
HEADERS += AutoUpdater.h CocoaInitializer.h SparkleAutoUpdater.h |
|
84 |
||
2002 | 85 |
} |