Home | History | Annotate | Download | only in tools
      1 add_subdirectory(libclang)
      2 add_subdirectory(c-index-test)
      3 add_subdirectory(arcmt-test)
      4 add_subdirectory(c-arcmt-test)
      5 add_subdirectory(diagtool)
      6 add_subdirectory(driver)
      7 add_subdirectory(clang-check)
      8 
      9 # We support checking out the clang-tools-extra repository into the 'extra'
     10 # subdirectory. It contains tools developed as part of the Clang/LLVM project
     11 # on top of the Clang tooling platform. We keep them in a separate repository
     12 # to keep the primary Clang repository small and focused.
     13 if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/extra AND
     14    EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/extra/CMakeLists.txt)
     15   add_subdirectory(extra)
     16 endif()
     17