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