f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
12 lines
261 B
CMake
12 lines
261 B
CMake
# TODO: Set the install directory.
|
|
|
|
set(known_subdirs
|
|
"compiler-rt"
|
|
"libcxx"
|
|
)
|
|
|
|
foreach (dir ${known_subdirs})
|
|
if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${dir}/CMakeLists.txt)
|
|
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${dir})
|
|
endif()
|
|
endforeach()
|