mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-19 07:48:30 +00:00
12 lines
438 B
CMake
12 lines
438 B
CMake
# ==============================================================================
|
|
# assets/languages/clean_translations.cmake
|
|
# ==============================================================================
|
|
|
|
if (WIN32)
|
|
foreach (lang ${LANGUAGES})
|
|
file(READ "${lang}.ts" content)
|
|
set(cleanedContent)
|
|
string(REPLACE "\r" "" cleanedContent "${content}")
|
|
file(WRITE "${lang}.ts" "${cleanedContent}")
|
|
endforeach ()
|
|
endif ()
|