xref: /openbsd-src/gnu/llvm/clang/lib/Index/CMakeLists.txt (revision a9ac8606c53d55cee9c3a39778b249c51df111ef)
1e5dd7070Spatrickset(LLVM_LINK_COMPONENTS
2e5dd7070Spatrick  Core
3e5dd7070Spatrick  Support
4e5dd7070Spatrick  )
5e5dd7070Spatrick
6e5dd7070Spatrickadd_clang_library(clangIndex
7e5dd7070Spatrick  CommentToXML.cpp
8e5dd7070Spatrick  FileIndexRecord.cpp
9e5dd7070Spatrick  IndexBody.cpp
10e5dd7070Spatrick  IndexDecl.cpp
11e5dd7070Spatrick  IndexingAction.cpp
12e5dd7070Spatrick  IndexingContext.cpp
13e5dd7070Spatrick  IndexSymbol.cpp
14e5dd7070Spatrick  IndexTypeSourceInfo.cpp
15e5dd7070Spatrick  USRGeneration.cpp
16e5dd7070Spatrick
17e5dd7070Spatrick  ADDITIONAL_HEADERS
18e5dd7070Spatrick  IndexingContext.h
19e5dd7070Spatrick
20e5dd7070Spatrick  LINK_LIBS
21e5dd7070Spatrick  clangAST
22e5dd7070Spatrick  clangBasic
23e5dd7070Spatrick  clangFormat
24e5dd7070Spatrick  clangFrontend
25e5dd7070Spatrick  clangLex
26e5dd7070Spatrick  clangRewrite
27e5dd7070Spatrick  clangSerialization
28e5dd7070Spatrick  clangToolingCore
29*ec727ea7Spatrick
30*ec727ea7Spatrick  DEPENDS
31*ec727ea7Spatrick  omp_gen
32e5dd7070Spatrick  )
33