share/hedgewars/Data/Locale/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Mon, 13 Nov 2017 22:14:45 +0100
changeset 12841 8610462e3d33
parent 10388 665d8b699d35
child 11168 e104e060911b
child 12860 1b2b84315d27
permissions -rw-r--r--
Remove 2 unused number tags in Construction Mode GUI These numbers are shown aside the power tag, but the numbers never change. They don't serve any purpose and are just visual clutter and annoying, since they partially overlap. They are probably a leftover from copying code over from other scripts. With this changeset, only the power and turn time are left visible, as it is supposed to.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10388
665d8b699d35 part of patch in issue 803 (ty) - this hopefully should fix issues with cmake Makefiles trying to run "Qt4::lrelease" in the shell
sheepluva
parents: 9832
diff changeset
     1
find_package(Qt4 REQUIRED)
665d8b699d35 part of patch in issue 803 (ty) - this hopefully should fix issues with cmake Makefiles trying to run "Qt4::lrelease" in the shell
sheepluva
parents: 9832
diff changeset
     2
include(${QT_USE_FILE})
665d8b699d35 part of patch in issue 803 (ty) - this hopefully should fix issues with cmake Makefiles trying to run "Qt4::lrelease" in the shell
sheepluva
parents: 9832
diff changeset
     3
1993
66ac34be63d1 Fix some locale files installation
unc0rr
parents: 1523
diff changeset
     4
file(GLOB txttrans2 ??.txt)
66ac34be63d1 Fix some locale files installation
unc0rr
parents: 1523
diff changeset
     5
file(GLOB txttrans5 ?????.txt)
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
     6
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
     7
file(GLOB luafiles *.lua)
6059
ddf020d0941a training screen localization works now
sheepluva
parents: 4502
diff changeset
     8
file(GLOB missionfiles missions_*.txt)
9237
b2f4bd758a0b added campaign descriptions in CMakeList
Periklis Ntanasis <pntanasis@gmail.com>
parents: 8443
diff changeset
     9
file(GLOB campaignfiles campaigns_*.txt)
9832
b1038b4373cc Localise tips again. Including new german contribution from bug #738. We should look into the old .ts files and see if there are translations that can be recovered.
nemo
parents: 9237
diff changeset
    10
file(GLOB tipfiles tips_*.xml)
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    11
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    12
QT4_ADD_TRANSLATION(QM ${tsfiles})
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    13
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    14
add_custom_target (release-translation ALL
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    15
        DEPENDS ${QM}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    16
        COMMENT "Compiling ts files"
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    17
)
1026
a415f436fe3a Add German translation
unc0rr
parents: 932
diff changeset
    18
184
f97a7a3dc8f6 - Update more headers
unc0rr
parents: 98
diff changeset
    19
install(FILES
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    20
    ${txttrans2}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    21
    ${txttrans5}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    22
    ${QM}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    23
    ${luafiles}
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    24
    ${missionfiles}
9237
b2f4bd758a0b added campaign descriptions in CMakeList
Periklis Ntanasis <pntanasis@gmail.com>
parents: 8443
diff changeset
    25
    ${campaignfiles}
9832
b1038b4373cc Localise tips again. Including new german contribution from bug #738. We should look into the old .ts files and see if there are translations that can be recovered.
nemo
parents: 9237
diff changeset
    26
    ${tipfiles}
8443
2debc9b9f917 remove trailing whitespaces from share too
koda
parents: 6059
diff changeset
    27
    DESTINATION ${SHAREPATH}Data/Locale
3822
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    28
)
ee85a9c73ece *patch by arrom: fix installation of fort images
koda
parents: 3683
diff changeset
    29