Files
clang-p2996/clang/lib/ExtractAPI/CMakeLists.txt
Erick Velez 06ff977047 [clang][ExtractAPI] Refactor serializer to the CRTP
Refactor SerializerBase and SymbolGraphSerializer to use a visitor pattern described by the CRTP.

Reviewed By: dang

Differential Revision: https://reviews.llvm.org/D151477
2023-05-30 19:00:35 +01:00

22 lines
354 B
CMake

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