share/hedgewars/Data/Locale/CMakeLists.txt
author sheepluva
Tue, 06 Jan 2015 19:26:25 +0100
branch0.9.21
changeset 10750 31c744824dab
parent 10388 665d8b699d35
child 12855 1b2b84315d27
permissions -rw-r--r--
don't show the new, untranslated items in room state filter dropdown. do NOT merge this change back to default.

find_package(Qt4 REQUIRED)
include(${QT_USE_FILE})

file(GLOB txttrans2 ??.txt)
file(GLOB txttrans5 ?????.txt)
file(GLOB tsfiles *.ts)
file(GLOB luafiles *.lua)
file(GLOB missionfiles missions_*.txt)
file(GLOB campaignfiles campaigns_*.txt)
file(GLOB tipfiles tips_*.xml)

QT4_ADD_TRANSLATION(QM ${tsfiles})

add_custom_target (release-translation ALL
        DEPENDS ${QM}
        COMMENT "Compiling ts files"
)

install(FILES
    ${txttrans2}
    ${txttrans5}
    ${QM}
    ${luafiles}
    ${missionfiles}
    ${campaignfiles}
    ${tipfiles}
    DESTINATION ${SHAREPATH}Data/Locale
)