2013-09-04 01:58:19 +08:00
|
|
|
add_subdirectory(clang-apply-replacements)
|
2014-08-20 09:39:05 +08:00
|
|
|
add_subdirectory(clang-rename)
|
2016-09-02 10:56:07 +08:00
|
|
|
add_subdirectory(clang-reorder-fields)
|
2013-09-05 01:35:07 +08:00
|
|
|
add_subdirectory(modularize)
|
2014-07-15 06:15:29 +08:00
|
|
|
if(CLANG_ENABLE_STATIC_ANALYZER)
|
|
|
|
add_subdirectory(clang-tidy)
|
2016-09-08 02:28:55 +08:00
|
|
|
add_subdirectory(clang-tidy-vs)
|
2014-07-15 06:15:29 +08:00
|
|
|
endif()
|
|
|
|
|
2016-09-20 01:40:32 +08:00
|
|
|
add_subdirectory(change-namespace)
|
2014-07-15 06:15:29 +08:00
|
|
|
add_subdirectory(clang-query)
|
[clang-move] A prototype tool for moving class definition to new file.
Summary:
This patch introduces a new tool which moves a specific class definition
from files (.h, .cc) to new files (.h, .cc), which mostly acts like
"Extract class defintion". In the long term, this tool should be
merged in to clang-refactoring as a subtool.
clang-move not only moves class definition, but also moves all the
forward declarations, functions defined in anonymous namespace and #include
headers to new files, to make sure the new files are compliable as much
as possible.
To move `Foo` from old.[h/cc] to new.[h/cc], use:
```
clang-move -name=Foo -old_header=old.h -old_cc=old.cc -new_header=new.h
-new_cc=new.cc old.cc
```
To move `Foo` from old.h to new.h, use:
```
clang-move -name=Foo -old_header=old.h -new_header=new.h old.cc
```
Reviewers: klimek, djasper, ioeric
Subscribers: mgorny, beanz, Eugene.Zelenko, bkramer, omtcyfz, cfe-commits
Differential Revision: https://reviews.llvm.org/D24243
llvm-svn: 282070
2016-09-21 21:18:19 +08:00
|
|
|
add_subdirectory(clang-move)
|
2016-04-20 20:43:43 +08:00
|
|
|
add_subdirectory(include-fixer)
|
2014-07-15 06:15:29 +08:00
|
|
|
add_subdirectory(pp-trace)
|
2013-09-05 01:35:07 +08:00
|
|
|
add_subdirectory(tool-template)
|
2012-08-07 16:33:04 +08:00
|
|
|
|
|
|
|
# Add the common testsuite after all the tools.
|
2014-07-15 06:15:29 +08:00
|
|
|
# TODO: Support tests with more granularity when features are off?
|
2015-10-02 07:50:06 +08:00
|
|
|
if(CLANG_ENABLE_STATIC_ANALYZER AND CLANG_INCLUDE_TESTS)
|
2012-08-07 16:33:04 +08:00
|
|
|
add_subdirectory(test)
|
2013-04-03 23:11:08 +08:00
|
|
|
add_subdirectory(unittests)
|
2014-07-15 06:15:29 +08:00
|
|
|
endif()
|
2016-01-27 19:37:08 +08:00
|
|
|
|
|
|
|
option(CLANG_TOOLS_EXTRA_INCLUDE_DOCS "Generate build targets for the Clang Extra Tools docs."
|
|
|
|
${LLVM_INCLUDE_DOCS})
|
|
|
|
if( CLANG_TOOLS_EXTRA_INCLUDE_DOCS )
|
|
|
|
add_subdirectory(docs)
|
|
|
|
endif()
|
|
|
|
|