Home | History | Annotate | Download | only in runtime
      1 # TODO: Set the install directory.
      2 
      3 set(known_subdirs
      4   "compiler-rt"
      5   "libcxx"
      6   )
      7 
      8 foreach (dir ${known_subdirs})
      9   if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${dir}/CMakeLists.txt)
     10     add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${dir})
     11   endif()
     12 endforeach()
     13