blob: 68ee266ecae92ab5337ac8a30e4ac2d3c71bc1e6 [file] [log] [blame]
Michael J. Spencer48263ba2010-12-16 03:28:42 +00001# TODO: Set the install directory.
2
3set(known_subdirs
4 "compiler-rt"
Bob Wilsonda79da22011-09-30 20:24:28 +00005 "libcxx"
Michael J. Spencer48263ba2010-12-16 03:28:42 +00006 )
7
8foreach (dir ${known_subdirs})
9 if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${dir}/CMakeLists.txt)
10 add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${dir})
11 endif()
12endforeach()