mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 16:40:59 -04:00
13 lines
261 B
CMake
13 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()
|