aboutsummaryrefslogtreecommitdiff
path: root/runtime/CMakeLists.txt
blob: e53d805cbd64c00aa7159caabc1f195a7db59e58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# TODO: Set the install directory.

set(known_subdirs
  "compiler-rt"
  )

foreach (dir ${known_subdirs})
  if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${dir}/CMakeLists.txt)
    add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${dir})
  endif()
endforeach()