diff options
Diffstat (limited to 'doc/en/howto/unicode/CMakeL10n.txt')
-rw-r--r-- | doc/en/howto/unicode/CMakeL10n.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/en/howto/unicode/CMakeL10n.txt b/doc/en/howto/unicode/CMakeL10n.txt new file mode 100644 index 0000000..4dfa67b --- /dev/null +++ b/doc/en/howto/unicode/CMakeL10n.txt @@ -0,0 +1,14 @@ +##### create translation templates ############## + +file( GLOB _docs + RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_CURRENT_SOURCE_DIR}/*.docbook +) +list( SORT _docs ) +list( REMOVE_ITEM _docs "index.docbook" ) +list( INSERT _docs 0 "index.docbook" ) + +tde_l10n_create_template( + CATALOG "howto" + SOURCES ${_docs} +) |