Files
clang-p2996/llvm/lib/TextAPI/CMakeLists.txt
Cyndy Ishida 16c1f43642 [TextAPI] Add functionality to manipulate over InterfaceFiles
InterfaceFile is the in-memory representation for tbd files. Add APIs to
merge, extract, remove, and inline reexported libraries.

Reviewed By: zixuw

Differential Revision: https://reviews.llvm.org/D153398
2023-07-25 09:23:57 -07:00

23 lines
378 B
CMake

add_llvm_component_library(LLVMTextAPI
Architecture.cpp
ArchitectureSet.cpp
InterfaceFile.cpp
TextStubV5.cpp
PackedVersion.cpp
Platform.cpp
Symbol.cpp
SymbolSet.cpp
Target.cpp
TextAPIError.cpp
TextStub.cpp
TextStubCommon.cpp
ADDITIONAL_HEADER_DIRS
"${LLVM_MAIN_INCLUDE_DIR}/llvm/TextAPI"
LINK_COMPONENTS
Support
BinaryFormat
TargetParser
)