Adds a `--extract-api-ignores=` command line option that allows users to provide a file containing a new line separated list of symbols to unconditionally ignore when extracting API information. Differential Revision: https://reviews.llvm.org/D136450
22 lines
374 B
CMake
22 lines
374 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
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
|
|
)
|