
This patch adds support for expected InstallAPI inputs. InstallAPI accepts a well defined filelist of headers and how those headers represent a single library. InstallAPI captures header files to determine linkable symbols to then compare against what was compiled in a binary dylib and generate TBD files.
22 lines
349 B
CMake
22 lines
349 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
TargetParser
|
|
)
|
|
|
|
add_clang_library(clangExtractAPI
|
|
API.cpp
|
|
APIIgnoresList.cpp
|
|
ExtractAPIConsumer.cpp
|
|
DeclarationFragments.cpp
|
|
Serialization/SymbolGraphSerializer.cpp
|
|
TypedefUnderlyingTypeResolver.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangBasic
|
|
clangFrontend
|
|
clangIndex
|
|
clangInstallAPI
|
|
clangLex
|
|
)
|