2011-08-09 11:39:19 +08:00
|
|
|
add_subdirectory(diagtool)
|
2009-03-24 10:52:57 +08:00
|
|
|
add_subdirectory(driver)
|
2013-08-22 23:50:02 +08:00
|
|
|
if(CLANG_ENABLE_REWRITER)
|
|
|
|
add_subdirectory(clang-format)
|
2013-12-04 02:02:51 +08:00
|
|
|
add_subdirectory(clang-format-vs)
|
2013-08-22 23:50:02 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(CLANG_ENABLE_ARCMT)
|
|
|
|
add_subdirectory(libclang)
|
|
|
|
add_subdirectory(c-index-test)
|
|
|
|
add_subdirectory(arcmt-test)
|
|
|
|
add_subdirectory(c-arcmt-test)
|
|
|
|
endif()
|
2013-07-04 00:20:29 +08:00
|
|
|
if(CLANG_ENABLE_STATIC_ANALYZER)
|
|
|
|
add_subdirectory(clang-check)
|
|
|
|
endif()
|
2012-08-07 16:37:42 +08:00
|
|
|
|
|
|
|
# We support checking out the clang-tools-extra repository into the 'extra'
|
|
|
|
# subdirectory. It contains tools developed as part of the Clang/LLVM project
|
|
|
|
# on top of the Clang tooling platform. We keep them in a separate repository
|
|
|
|
# to keep the primary Clang repository small and focused.
|
2012-10-10 21:46:18 +08:00
|
|
|
# It also may be included by LLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR.
|
|
|
|
add_llvm_external_project(clang-tools-extra extra)
|