You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
626 B
21 lines
626 B
##### create translation templates ##############
|
|
|
|
tde_l10n_create_template( "kolf" )
|
|
|
|
tde_l10n_create_template(
|
|
CATALOG "desktop_files/kolf-desktops/"
|
|
SOURCES *.desktop
|
|
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
|
|
)
|
|
|
|
file( GLOB _courses RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/courses/* )
|
|
list( REMOVE_ITEM _courses courses/CMakeLists.txt courses/Makefile.am courses/ADDING_COURSES )
|
|
list( SORT _courses )
|
|
|
|
tde_l10n_create_template(
|
|
CATALOG "desktop_files/kolf-courses/"
|
|
SOURCES_DESKTOP intro tutorial.kolf ${_courses}
|
|
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
|
|
)
|