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