llvm-project/clang/lib/Index/CMakeLists.txt
Nathan Ridge d09cce166d
[clang][Index] Use HeuristicResolver in libIndex (#125153)
The uses replace hand-rolled code that did a subset of what
HeuristicResolver does.
2025-02-18 01:13:35 -05:00

34 lines
474 B
CMake

set(LLVM_LINK_COMPONENTS
Core
Support
)
add_clang_library(clangIndex
CommentToXML.cpp
FileIndexRecord.cpp
IndexBody.cpp
IndexDecl.cpp
IndexingAction.cpp
IndexingContext.cpp
IndexSymbol.cpp
IndexTypeSourceInfo.cpp
USRGeneration.cpp
ADDITIONAL_HEADERS
IndexingContext.h
LINK_LIBS
clangAST
clangBasic
clangFormat
clangFrontend
clangLex
clangSema
clangSerialization
clangToolingCore
DEPENDS
omp_gen
ClangDriverOptions
)