missing CMakeLists.txt on previous commit

This commit is contained in:
2020-08-19 00:48:38 +03:00
parent 3e1768b418
commit 76d9604282
2 changed files with 37 additions and 0 deletions

11
qad/utils/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
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()