12 lines
217 B
CMake
12 lines
217 B
CMake
include_directories(${qad_includes})
|
|
file(GLOB _dl "[^.]*")
|
|
foreach(_D ${_dl})
|
|
if(IS_DIRECTORY ${_D})
|
|
add_subdirectory(${_D})
|
|
endif()
|
|
endforeach()
|
|
|
|
if (LIB)
|
|
set(_ALL_TARGETS ${_ALL_TARGETS} PARENT_SCOPE)
|
|
endif()
|