• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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-offload-bundler)
12add_clang_subdirectory(clang-offload-wrapper)
13add_clang_subdirectory(clang-scan-deps)
14
15add_clang_subdirectory(c-index-test)
16
17add_clang_subdirectory(clang-rename)
18add_clang_subdirectory(clang-refactor)
19# For MinGW we only enable shared library if LLVM_LINK_LLVM_DYLIB=ON.
20# Without that option resulting library is too close to 2^16 DLL exports limit.
21if(UNIX OR (MINGW AND LLVM_LINK_LLVM_DYLIB))
22  add_clang_subdirectory(clang-shlib)
23endif()
24
25if(CLANG_ENABLE_ARCMT)
26  add_clang_subdirectory(arcmt-test)
27  add_clang_subdirectory(c-arcmt-test)
28endif()
29
30if(CLANG_ENABLE_STATIC_ANALYZER)
31  add_clang_subdirectory(clang-check)
32  add_clang_subdirectory(clang-extdef-mapping)
33  add_clang_subdirectory(scan-build)
34  add_clang_subdirectory(scan-view)
35endif()
36
37# We support checking out the clang-tools-extra repository into the 'extra'
38# subdirectory. It contains tools developed as part of the Clang/LLVM project
39# on top of the Clang tooling platform. We keep them in a separate repository
40# to keep the primary Clang repository small and focused.
41# It also may be included by LLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR.
42add_llvm_external_project(clang-tools-extra extra)
43
44# libclang may require clang-tidy in clang-tools-extra.
45add_clang_subdirectory(libclang)
46