]> git.lyx.org Git - lyx.git/blob - development/cmake/modules/FindLyXGettext.cmake
Kornel's cmake install changes:
[lyx.git] / development / cmake / modules / FindLyXGettext.cmake
1 # - Slightly modified Find GNU gettext tools
2 # This module looks for the GNU gettext tools. This module defines the 
3 # following values:
4 #  GETTEXT_MSGMERGE_EXECUTABLE: the full path to the msgmerge tool.
5 #  GETTEXT_MSGFMT_EXECUTABLE: the full path to the msgfmt tool.
6 #  GETTEXT_FOUND: True if gettext has been found.
7 #
8 # Additionally it provides the following macros:
9 # GETTEXT_CREATE_TRANSLATIONS ( outputFile [ALL] file1 ... fileN )
10 #    This will create a target "translations" which will convert the 
11 #    given input po files into the binary output mo file. If the 
12 #    ALL option is used, the translations will also be created when
13 #    building the default target.
14
15 FIND_PROGRAM(GETTEXT_MSGMERGE_EXECUTABLE msgmerge)
16
17 FIND_PROGRAM(GETTEXT_MSGFMT_EXECUTABLE msgfmt)
18
19 MACRO(GETTEXT_CREATE_TRANSLATIONS _potFile _firstPoFile)
20
21    SET(_gmoFiles)
22    GET_FILENAME_COMPONENT(_potBasename ${_potFile} NAME_WE)
23    GET_FILENAME_COMPONENT(_absPotFile ${_potFile} ABSOLUTE)
24
25    SET(_addToAll)
26    IF(${_firstPoFile} STREQUAL "ALL")
27       SET(_addToAll "ALL")
28       SET(_firstPoFile)
29    ENDIF(${_firstPoFile} STREQUAL "ALL")
30
31    FOREACH (_currentPoFile ${ARGN})
32       GET_FILENAME_COMPONENT(_absFile ${_currentPoFile} ABSOLUTE)
33       GET_FILENAME_COMPONENT(_abs_PATH ${_absFile} PATH)
34       GET_FILENAME_COMPONENT(_lang ${_absFile} NAME_WE)
35       SET(_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo)
36
37       ADD_CUSTOM_COMMAND( 
38          OUTPUT ${_gmoFile} 
39          COMMAND ${GETTEXT_MSGMERGE_EXECUTABLE} --quiet --update --backup=none -s ${_absFile} ${_absPotFile}
40          COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} -o ${_gmoFile} ${_absFile}
41          DEPENDS ${_absPotFile} ${_absFile} 
42       )
43
44       INSTALL(FILES ${_gmoFile} DESTINATION ${LYX_LOCALEDIR}/${_lang}/LC_MESSAGES RENAME ${_potBasename}.mo) 
45       SET(_gmoFiles ${_gmoFiles} ${_gmoFile})
46
47    ENDFOREACH (_currentPoFile )
48
49    ADD_CUSTOM_TARGET(translations ${_addToAll} DEPENDS ${_gmoFiles})
50
51 ENDMACRO(GETTEXT_CREATE_TRANSLATIONS )
52
53 IF (GETTEXT_MSGMERGE_EXECUTABLE AND GETTEXT_MSGFMT_EXECUTABLE )
54    SET(GETTEXT_FOUND TRUE)
55 ELSE (GETTEXT_MSGMERGE_EXECUTABLE AND GETTEXT_MSGFMT_EXECUTABLE )
56    SET(GETTEXT_FOUND FALSE)
57    IF (GetText_REQUIRED)
58       MESSAGE(FATAL_ERROR "GetText not found")
59    ENDIF (GetText_REQUIRED)
60 ENDIF (GETTEXT_MSGMERGE_EXECUTABLE AND GETTEXT_MSGFMT_EXECUTABLE )
61
62
63