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.
kile/src/kile/complete/CMakeLists.txt

15 lines
413 B

file( GLOB _completions RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} * )
list( SORT _completions )
foreach( _completion IN LISTS _completions )
if( IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${_completion} )
file( GLOB _files ${_completion}/*.cwl )
list( SORT _files )
install(
FILES ${_files}
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/complete/${_completion}
)
endif()
endforeach()