Skip to content
Snippets Groups Projects
Select Git revision
  • 4caf1cc37e9dc0896a2e7f8ccbd2cbffac39418d
  • master default protected
  • develop protected
  • cmake_boost_refactor
  • ubuntu_ci
  • mmtf
  • non-orthogonal-maps
  • no_boost_filesystem
  • data_viewer
  • 2.11.1
  • 2.11.0
  • 2.10.0
  • 2.9.3
  • 2.9.2
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.0
  • 2.6.1
  • 2.6.0
  • 2.6.0-rc4
  • 2.6.0-rc3
  • 2.6.0-rc2
  • 2.6.0-rc
  • 2.5.0
  • 2.5.0-rc2
  • 2.5.0-rc
  • 2.4.0
  • 2.4.0-rc2
29 results

CMakeLists.txt

Blame
  • CMakeLists.txt 319 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")
          if(IS_DIRECTORY ${fname})
            add_subdirectory(${fname})
          endif()
      endif()
    endforeach()