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