share/hedgewars/Data/Locale/CMakeLists.txt
author sheepluva
Wed, 28 Sep 2011 06:24:10 +0200
changeset 6059 ddf020d0941a
parent 4502 759c1a3bb156
child 8443 2debc9b9f917
permissions -rw-r--r--
training screen localization works now
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1993
66ac34be63d1 Fix some locale files installation
unc0rr
parents: 1523
diff changeset
     1
file(GLOB txttrans2 ??.txt)
66ac34be63d1 Fix some locale files installation
unc0rr
parents: 1523
diff changeset
     2
file(GLOB txttrans5 ?????.txt)
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
     3
file(GLOB tsfiles *.ts)
4502
759c1a3bb156 lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents: 3822
diff changeset
     4
file(GLOB luafiles *.lua)
6059
ddf020d0941a training screen localization works now
sheepluva
parents: 4502
diff changeset
     5
file(GLOB missionfiles missions_*.txt)
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
     6
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
     7
QT4_ADD_TRANSLATION(QM ${tsfiles})
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
     8
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
     9
add_custom_target (release-translation ALL 
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    10
		DEPENDS ${QM}
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    11
		COMMENT "Compiling ts files"
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    12
)
1026
a415f436fe3a Add German translation
unc0rr
parents: 932
diff changeset
    13
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 98
diff changeset
    14
install(FILES
1993
66ac34be63d1 Fix some locale files installation
unc0rr
parents: 1523
diff changeset
    15
	${txttrans2}
66ac34be63d1 Fix some locale files installation
unc0rr
parents: 1523
diff changeset
    16
	${txttrans5}
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    17
	${QM}
4502
759c1a3bb156 lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents: 3822
diff changeset
    18
	${luafiles}
6059
ddf020d0941a training screen localization works now
sheepluva
parents: 4502
diff changeset
    19
	${missionfiles}
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    20
	DESTINATION ${SHAREPATH}Data/Locale
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    21
)
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    22