Warning, /education/step/step/data/tutorials/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 FILE(GLOB STEP_TUTORIALS_FILES "*.step")
0002 
0003 install(FILES
0004        ${STEP_TUTORIALS_FILES}
0005        DESTINATION  ${KDE_INSTALL_DATADIR}/step/tutorials)
0006 
0007 FILE(GLOB po_files "${CMAKE_SOURCE_DIR}/po/*/step_example_files.po")
0008 foreach(po_file ${po_files})
0009     get_filename_component(po_dir ${po_file} DIRECTORY)
0010     get_filename_component(CURRENT_LANG ${po_dir} NAME)
0011     STEP_PROCESS_XML_TRANSLATION(${CURRENT_LANG} ${po_file}
0012         "--context=\"%(tag)s\" --tag=name --tag=text --unquote --parse-unquoted=\"--context=HTML:%(tag)s --tag-regex=^(?:title|body|p|h[1-6])$$ --recursive --strip\""
0013         ALL INSTALL_DESTINATION ${KDE_INSTALL_DATADIR}/step/tutorials
0014         ${STEP_TUTORIALS_FILES})
0015 endforeach()