Clang Project

clang_source_code/lib/Index/CMakeLists.txt
1set(LLVM_LINK_COMPONENTS
2  Core
3  Support
4  )
5
6add_clang_library(clangIndex
7  CodegenNameGenerator.cpp
8  CommentToXML.cpp
9  FileIndexRecord.cpp
10  IndexBody.cpp
11  IndexDecl.cpp
12  IndexingAction.cpp
13  IndexingContext.cpp
14  IndexSymbol.cpp
15  IndexTypeSourceInfo.cpp
16  USRGeneration.cpp
17
18  ADDITIONAL_HEADERS
19  IndexingContext.h
20  SimpleFormatContext.h
21
22  LINK_LIBS
23  clangAST
24  clangBasic
25  clangFormat
26  clangFrontend
27  clangLex
28  clangRewrite
29  clangSerialization
30  clangToolingCore
31  )
32