diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2016-02-12 23:10:59 +0000 |
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2016-02-12 23:10:59 +0000 |
| commit | f4fb85b1c74e88c7b3d4346e5a52348f97bb7ecd (patch) | |
| tree | b46847178018a9ac848ee2ef79d776004bc7d4a9 /clang/lib/Index/CMakeLists.txt | |
| parent | 51699a83cd54680d82b5c0926a22ac7a41354b54 (diff) | |
| download | bcm5719-llvm-f4fb85b1c74e88c7b3d4346e5a52348f97bb7ecd.tar.gz bcm5719-llvm-f4fb85b1c74e88c7b3d4346e5a52348f97bb7ecd.zip | |
[libclang] Separate the underlying indexing functionality of libclang and introduce it into the clangIndex library.
It is a general goodness for libclang itself to mostly be a wrapper of functionality provided by the libraries.
llvm-svn: 260760
Diffstat (limited to 'clang/lib/Index/CMakeLists.txt')
| -rw-r--r-- | clang/lib/Index/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/lib/Index/CMakeLists.txt b/clang/lib/Index/CMakeLists.txt index 3869c32c879..cb2b931235e 100644 --- a/clang/lib/Index/CMakeLists.txt +++ b/clang/lib/Index/CMakeLists.txt @@ -5,14 +5,22 @@ set(LLVM_LINK_COMPONENTS add_clang_library(clangIndex CommentToXML.cpp USRGeneration.cpp + IndexBody.cpp + IndexDecl.cpp + IndexingAction.cpp + IndexingContext.cpp + IndexSymbol.cpp + IndexTypeSourceInfo.cpp ADDITIONAL_HEADERS + IndexingContext.h SimpleFormatContext.h LINK_LIBS clangAST clangBasic clangFormat + clangFrontend clangRewrite clangToolingCore ) |

