author | nemo |
Mon, 23 Dec 2013 13:51:51 -0500 | |
changeset 9828 | 75457c7b84ee |
parent 9237 | b2f4bd758a0b |
child 9832 | b1038b4373cc |
permissions | -rw-r--r-- |
1993 | 1 |
file(GLOB txttrans2 ??.txt) |
2 |
file(GLOB txttrans5 ?????.txt) |
|
3822 | 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 | 5 |
file(GLOB missionfiles missions_*.txt) |
9237
b2f4bd758a0b
added campaign descriptions in CMakeList
Periklis Ntanasis <pntanasis@gmail.com>
parents:
8443
diff
changeset
|
6 |
file(GLOB campaignfiles campaigns_*.txt) |
3822 | 7 |
|
8 |
QT4_ADD_TRANSLATION(QM ${tsfiles}) |
|
9 |
||
8443 | 10 |
add_custom_target (release-translation ALL |
11 |
DEPENDS ${QM} |
|
12 |
COMMENT "Compiling ts files" |
|
3822 | 13 |
) |
1026 | 14 |
|
184 | 15 |
install(FILES |
8443 | 16 |
${txttrans2} |
17 |
${txttrans5} |
|
18 |
${QM} |
|
19 |
${luafiles} |
|
20 |
${missionfiles} |
|
9237
b2f4bd758a0b
added campaign descriptions in CMakeList
Periklis Ntanasis <pntanasis@gmail.com>
parents:
8443
diff
changeset
|
21 |
${campaignfiles} |
8443 | 22 |
DESTINATION ${SHAREPATH}Data/Locale |
3822 | 23 |
) |
24 |