2013-09-03 21:58:19 +04:00
|
|
|
add_subdirectory(clang-apply-replacements)
|
2013-09-04 21:35:07 +04:00
|
|
|
add_subdirectory(clang-modernize)
|
|
|
|
add_subdirectory(modularize)
|
2014-01-07 19:22:08 +04:00
|
|
|
add_subdirectory(module-map-checker)
|
2013-09-04 21:35:07 +04:00
|
|
|
add_subdirectory(remove-cstr-calls)
|
2014-07-15 02:15:29 +04:00
|
|
|
if(CLANG_ENABLE_STATIC_ANALYZER)
|
|
|
|
add_subdirectory(clang-tidy)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_subdirectory(clang-query)
|
|
|
|
add_subdirectory(pp-trace)
|
2013-09-04 21:35:07 +04:00
|
|
|
add_subdirectory(tool-template)
|
2012-08-07 12:33:04 +04:00
|
|
|
|
|
|
|
# Add the common testsuite after all the tools.
|
2014-07-15 02:15:29 +04:00
|
|
|
# TODO: Support tests with more granularity when features are off?
|
2014-07-16 20:50:17 +04:00
|
|
|
if(CLANG_ENABLE_STATIC_ANALYZER)
|
2012-08-07 12:33:04 +04:00
|
|
|
add_subdirectory(test)
|
2013-04-03 19:11:08 +04:00
|
|
|
add_subdirectory(unittests)
|
2014-07-15 02:15:29 +04:00
|
|
|
endif()
|