blob: 96779f5565ed877a0c456457f72582c618ea2b81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
##### create translation templates ##############
file( GLOB_RECURSE _themes
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/*.theme )
list( SORT _themes )
tde_l10n_create_template(
CATALOG "desktop_files/icon-themes/"
SOURCES_DESKTOP ${_themes}
DESTINATION "${CMAKE_SOURCE_DIR}/translations"
)
|