13 lines
356 B
CMake
13 lines
356 B
CMake
file(GLOB images LIST_DIRECTORIES false *.png *.gif *.svg)
|
|
|
|
file(GLOB children *)
|
|
set(dirlist "")
|
|
foreach(child ${children})
|
|
if(IS_DIRECTORY ${child})
|
|
list(APPEND dirlist ${child})
|
|
endif()
|
|
endforeach()
|
|
|
|
install(FILES ${images} DESTINATION ${UKUI_BIOMETRIC_DIR}/images)
|
|
install(DIRECTORY ${dirlist} DESTINATION ${UKUI_BIOMETRIC_DIR}/images)
|