Something went wrong on our end
-
marco authored
git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2327 5a81b35b-ba03-0410-adc8-b2c5c5119f08
marco authoredgit-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2327 5a81b35b-ba03-0410-adc8-b2c5c5119f08
CMakeLists.txt 355 B
# recursively process all subdirectories
file(GLOB ALL_FILES *)
foreach(fname ${ALL_FILES})
if(NOT ${fname} MATCHES ".*.svn"
AND NOT ${fname} MATCHES ".*CMakeFiles"
AND NOT ${fname} MATCHES ".*main"
AND NOT ${fname} MATCHES "doc")
if(IS_DIRECTORY ${fname})
add_subdirectory(${fname})
endif()
endif()
endforeach()