diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-08-07 12:42:15 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-08-07 12:42:15 -0500 |
commit | a7ba9fc0048d2041caefd6d6fde88f1bfdaa1be6 (patch) | |
tree | 4022dc9d3302cd6994a2629dfefb1237c3360059 /cmake | |
parent | 23b0a5d6d97b8e36443a2a719b879f99975ef972 (diff) | |
download | ayatana-indicator-datetime-a7ba9fc0048d2041caefd6d6fde88f1bfdaa1be6.tar.gz ayatana-indicator-datetime-a7ba9fc0048d2041caefd6d6fde88f1bfdaa1be6.tar.bz2 ayatana-indicator-datetime-a7ba9fc0048d2041caefd6d6fde88f1bfdaa1be6.zip |
when building the potfile, include .cc, .cpp, and .cxx files.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Translations.cmake | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/cmake/Translations.cmake b/cmake/Translations.cmake index d41f04e..b51c39d 100644 --- a/cmake/Translations.cmake +++ b/cmake/Translations.cmake @@ -20,22 +20,18 @@ macro(add_translations_catalog NLS_PACKAGE) add_custom_target (pot COMMENT “Building translation catalog.”) find_program (XGETTEXT_EXECUTABLE xgettext) + # init this list, which will hold all the sources across all dirs + set(SOURCES "") - set(C_SOURCE "") - + # add each directory's sources to the overall sources list foreach(FILES_INPUT ${ARGN}) - file (GLOB_RECURSE SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/${FILES_INPUT}/*.c) - foreach(C_FILE ${SOURCE_FILES}) - set(C_SOURCE ${C_SOURCE} ${C_FILE}) - endforeach() - file (GLOB_RECURSE SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/${FILES_INPUT}/*.vala) - foreach(C_FILE ${SOURCE_FILES}) - set(C_SOURCE ${C_SOURCE} ${C_FILE}) - endforeach() + set (DIR ${CMAKE_CURRENT_SOURCE_DIR}/${FILES_INPUT}) + file (GLOB_RECURSE DIR_SOURCES ${DIR}/*.c ${DIR}/*.cc ${DIR}/*.cpp ${DIR}/*.cxx ${DIR}/*.vala) + set (SOURCES ${SOURCES} ${DIR_SOURCES}) endforeach() add_custom_command (TARGET pot COMMAND ${XGETTEXT_EXECUTABLE} -d ${NLS_PACKAGE} -o ${CMAKE_CURRENT_SOURCE_DIR}/${NLS_PACKAGE}.pot - ${VALA_SOURCE} ${C_SOURCE} --keyword="_" --keyword="N_" --from-code=UTF-8 + ${SOURCES} --keyword="_" --keyword="N_" --from-code=UTF-8 ) endmacro() |