Ted Kremenek | 2dc651d | 2011-08-09 03:39:19 +0000 | [diff] [blame] | 1 | add_subdirectory(diagtool) |
Daniel Dunbar | cbcd98b | 2009-03-24 02:52:57 +0000 | [diff] [blame] | 2 | add_subdirectory(driver) |
Jordan Rose | e638503 | 2013-08-22 15:50:02 +0000 | [diff] [blame] | 3 | if(CLANG_ENABLE_REWRITER) |
| 4 | add_subdirectory(clang-format) |
| 5 | endif() |
| 6 | |
| 7 | if(CLANG_ENABLE_ARCMT) |
| 8 | add_subdirectory(libclang) |
| 9 | add_subdirectory(c-index-test) |
| 10 | add_subdirectory(arcmt-test) |
| 11 | add_subdirectory(c-arcmt-test) |
| 12 | endif() |
Jordan Rose | d771b44 | 2013-07-03 16:20:29 +0000 | [diff] [blame] | 13 | if(CLANG_ENABLE_STATIC_ANALYZER) |
| 14 | add_subdirectory(clang-check) |
| 15 | endif() |
Chandler Carruth | 5d435b6 | 2012-08-07 08:37:42 +0000 | [diff] [blame] | 16 | |
| 17 | # We support checking out the clang-tools-extra repository into the 'extra' |
| 18 | # subdirectory. It contains tools developed as part of the Clang/LLVM project |
| 19 | # on top of the Clang tooling platform. We keep them in a separate repository |
| 20 | # to keep the primary Clang repository small and focused. |
NAKAMURA Takumi | ff2fb96 | 2012-10-10 13:46:18 +0000 | [diff] [blame] | 21 | # It also may be included by LLVM_EXTERNAL_CLANG_TOOLS_EXTRA_SOURCE_DIR. |
| 22 | add_llvm_external_project(clang-tools-extra extra) |