1add_subdirectory(diagtool) 2add_subdirectory(driver) 3add_subdirectory(clang-format) 4add_subdirectory(clang-format-vs) 5add_subdirectory(clang-fuzzer) 6 7add_subdirectory(c-index-test) 8add_subdirectory(libclang) 9 10if(CLANG_ENABLE_ARCMT) 11 add_subdirectory(arcmt-test) 12 add_subdirectory(c-arcmt-test) 13endif() 14 15if(CLANG_ENABLE_STATIC_ANALYZER) 16 add_subdirectory(clang-check) 17endif() 18 19# We support checking out the clang-tools-extra repository into the 'extra' 20# subdirectory. It contains tools developed as part of the Clang/LLVM project 21# on top of the Clang tooling platform. We keep them in a separate repository 22# to keep the primary Clang repository small and focused. 23# It also may be included by LLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR. 24add_llvm_external_project(clang-tools-extra extra) 25