summaryrefslogtreecommitdiffstats
path: root/docs/howto/unicode/CMakeL10n.txt
blob: 4dfa67b015c68c14c114fc65c0c94427438219bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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}
)