- Make CMakeLists a little more resilient - Format docs source - Add documentation for the examples
8 lines
326 B
CMake
8 lines
326 B
CMake
file( GLOB SUBDIRECTORIES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*" )
|
|
foreach( SUBDIRECTORY ${SUBDIRECTORIES} )
|
|
set( _sd "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIRECTORY}" )
|
|
if( IS_DIRECTORY "${_sd}" AND EXISTS "${_sd}/branding.desc" )
|
|
calamares_add_branding_subdirectory( ${SUBDIRECTORY} )
|
|
endif()
|
|
endforeach()
|