1 create_subdirectory_options(CLANG TOOL)
3 add_clang_subdirectory(diagtool)
4 add_clang_subdirectory(driver)
5 add_clang_subdirectory(apinotes-test)
6 add_clang_subdirectory(clang-diff)
7 add_clang_subdirectory(clang-format)
8 add_clang_subdirectory(clang-format-vs)
9 add_clang_subdirectory(clang-fuzzer)
10 add_clang_subdirectory(clang-import-test)
11 add_clang_subdirectory(clang-linker-wrapper)
12 add_clang_subdirectory(clang-nvlink-wrapper)
13 add_clang_subdirectory(clang-offload-packager)
14 add_clang_subdirectory(clang-offload-bundler)
15 add_clang_subdirectory(clang-scan-deps)
16 add_clang_subdirectory(clang-installapi)
17 if(HAVE_CLANG_REPL_SUPPORT)
18 add_clang_subdirectory(clang-repl)
21 add_clang_subdirectory(c-index-test)
23 add_clang_subdirectory(clang-rename)
24 add_clang_subdirectory(clang-refactor)
25 # For MinGW we only enable shared library if LLVM_LINK_LLVM_DYLIB=ON.
26 # Without that option resulting library is too close to 2^16 DLL exports limit.
27 if(UNIX OR (MINGW AND LLVM_LINK_LLVM_DYLIB))
28 add_clang_subdirectory(clang-shlib)
31 if(CLANG_ENABLE_ARCMT)
32 add_clang_subdirectory(arcmt-test)
33 add_clang_subdirectory(c-arcmt-test)
36 if(CLANG_ENABLE_STATIC_ANALYZER)
37 add_clang_subdirectory(clang-check)
38 add_clang_subdirectory(clang-extdef-mapping)
39 add_clang_subdirectory(scan-build)
40 add_clang_subdirectory(scan-build-py)
41 add_clang_subdirectory(scan-view)
44 # We support checking out the clang-tools-extra repository into the 'extra'
45 # subdirectory. It contains tools developed as part of the Clang/LLVM project
46 # on top of the Clang tooling platform. We keep them in a separate repository
47 # to keep the primary Clang repository small and focused.
48 # It also may be included by LLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR.
49 add_llvm_external_project(clang-tools-extra extra)
51 # libclang may require clang-tidy in clang-tools-extra.
52 add_clang_subdirectory(libclang)
54 add_clang_subdirectory(amdgpu-arch)
55 add_clang_subdirectory(nvptx-arch)