Files
libprozilla/po/CMakeLists.txt
T
2026-07-14 15:50:39 +02:00

8 lines
327 B
CMake

file(GLOB translation_catalogs CONFIGURE_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/*.gmo")
foreach(catalog IN LISTS translation_catalogs)
get_filename_component(language "${catalog}" NAME_WE)
install(FILES "${catalog}"
DESTINATION "${CMAKE_INSTALL_LOCALEDIR}/${language}/LC_MESSAGES"
RENAME libprozilla.mo)
endforeach()