Special:Badtitle/NS90:Talk:Development/Tutorials/Localization/i18n Build Systems/== Compiling and installing message catalogs ==
Appearance
Consider some editions to example CmakeLists.txt in #Compiling and installing message catalogs section.
For ${LOCALE_INSTALL_DIR} var to be set, I added the following at the beginning:
find_package(Gettext REQUIRED) find_package(ECM 0.0.12 REQUIRED) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) include(KDEInstallDirs)
Also I changed
ADD_CUSTOM_COMMAND(TARGET ${_gmoFile}
to
ADD_CUSTOM_COMMAND(OUTPUT ${_gmoFile}
otherwise it was not working for me.
Please, check that all is correct and then I will add it to page.