blob: 3a6fef5575ce3558c56ca4b957efd866c3a0ed88 [file] [log] [blame]
Ted Kremeneke802c612011-08-09 14:55:12 +00001add_subdirectory(libclang)
2add_subdirectory(c-index-test)
John McCall8f0e8d22011-06-15 23:25:17 +00003add_subdirectory(arcmt-test)
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +00004add_subdirectory(c-arcmt-test)
Ted Kremenek2dc651d2011-08-09 03:39:19 +00005add_subdirectory(diagtool)
Daniel Dunbarcbcd98b2009-03-24 02:52:57 +00006add_subdirectory(driver)
Manuel Klimekcb971c62012-04-04 12:07:46 +00007add_subdirectory(clang-check)
Chandler Carruth5d435b62012-08-07 08:37:42 +00008
9# We support checking out the clang-tools-extra repository into the 'extra'
10# subdirectory. It contains tools developed as part of the Clang/LLVM project
11# on top of the Clang tooling platform. We keep them in a separate repository
12# to keep the primary Clang repository small and focused.
13if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/extra AND
14 EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/extra/CMakeLists.txt)
15 add_subdirectory(extra)
16endif()