share/hedgewars/Data/Locale/CMakeLists.txt
author Wuzzy <Wuzzy2@mail.ru>
Wed, 28 Feb 2018 20:14:55 +0100
changeset 13073 bd629a70b4a1
parent 10388 665d8b699d35
child 12855 1b2b84315d27
permissions -rw-r--r--
Complete redo of Basic Bazooka Training This is now a proper tutorial instead of just a simple target practice without any commentary. It teaches players how to use the bazooka, how to deal with wind and how water skip works.

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
)