Files
clang-p2996/clang/lib/ExtractAPI/CMakeLists.txt
Daniel Grumberg 142c3d9d14 [clang][ExtractAPI] Reland ExtractAPI for libclang improvements
This relands the changes that were originally introduced by:
- https://reviews.llvm.org/D146656
- https://reviews.llvm.org/D147138

This also fixes the leak that led to these changes being reverted

Differential Revision: https://reviews.llvm.org/D147234
2023-03-30 18:13:58 +01:00

23 lines
389 B
CMake

set(LLVM_LINK_COMPONENTS
Support
TargetParser
)
add_clang_library(clangExtractAPI
API.cpp
APIIgnoresList.cpp
AvailabilityInfo.cpp
ExtractAPIConsumer.cpp
DeclarationFragments.cpp
Serialization/SerializerBase.cpp
Serialization/SymbolGraphSerializer.cpp
TypedefUnderlyingTypeResolver.cpp
LINK_LIBS
clangAST
clangBasic
clangFrontend
clangIndex
clangLex
)