mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-05 10:32:28 +01:00
17 lines
671 B
CMake
17 lines
671 B
CMake
find_program(LUPDATE_EXECUTABLE lupdate)
|
|
find_program(LRELEASE_EXECUTABLE lrelease)
|
|
|
|
# Updates all ts files and generates .qm
|
|
# Absolute paths are needed!
|
|
# qt_update_translations("${CMAKE_CURRENT_SOURCE_DIR}/qml" "${L10N_LIST}")
|
|
# The second argument (list) __must__ be passed as string!
|
|
function(qt_update_translations SOURCE_PATH TS_FILES)
|
|
|
|
foreach(_ts_file ${TS_FILES})
|
|
message(STATUS "Update Translation: ${_ts_file}")
|
|
execute_process(COMMAND ${LUPDATE_EXECUTABLE} -noobsolete -recursive ${SOURCE_PATH} -ts ${_ts_file} OUTPUT_QUIET)
|
|
execute_process(COMMAND ${LRELEASE_EXECUTABLE} ${_ts_file} OUTPUT_QUIET)
|
|
endforeach()
|
|
|
|
endfunction()
|