summaryrefslogtreecommitdiffhomepage
path: root/cmake/opentrack-install.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/opentrack-install.cmake')
-rw-r--r--cmake/opentrack-install.cmake11
1 files changed, 7 insertions, 4 deletions
diff --git a/cmake/opentrack-install.cmake b/cmake/opentrack-install.cmake
index 9fc280d6..3406007b 100644
--- a/cmake/opentrack-install.cmake
+++ b/cmake/opentrack-install.cmake
@@ -65,10 +65,13 @@ function(merge_translations)
list(APPEND deps "i18n-module-${k}")
endforeach()
- add_custom_target(i18n-lang-${i}
- COMMAND "${Qt5_DIR}/../../../bin/lrelease" -nounfinished -silent ${ts} -qm "${qm-output}"
- DEPENDS ${deps}
- )
+ if(NOT "${ts}" STREQUAL "")
+ add_custom_target(i18n-lang-${i}
+ COMMAND "${Qt5_DIR}/../../../bin/lrelease" -nounfinished -silent ${ts} -qm "${qm-output}"
+ DEPENDS ${deps})
+ else()
+ add_custom_target(i18n-lang-${i} DEPENDS ${deps})
+ endif()
list(APPEND all-deps "i18n-lang-${i}")
install(FILES "${qm-output}" DESTINATION "${opentrack-i18n-pfx}" RENAME "${i}.qm" ${opentrack-perms})
endforeach()