1set(LLVM_LINK_COMPONENTS
2  Support
3  )
4
5add_clang_library(clangIndex
6  CommentToXML.cpp
7  USRGeneration.cpp
8
9  ADDITIONAL_HEADERS
10  SimpleFormatContext.h
11
12  LINK_LIBS
13  clangAST
14  clangBasic
15  clangFormat
16  clangLex
17  clangRewriteCore
18  clangTooling
19  )
20