llvm-project/clang/lib/InstallAPI/CMakeLists.txt
Cyndy Ishida f2794ccede
[InstallAPI] Introduce Basic Verifier (#85106)
This adds basic support for calling the verifier on global declarations
that are expected to represent symbol exports. The driver now
exclusively uses this for knowing what symbols make up a TBD file.
Future patches will check against the dylib's symbol table.
2024-03-16 10:37:52 -07:00

20 lines
235 B
CMake

set(LLVM_LINK_COMPONENTS
Support
TextAPI
Demangle
Core
)
add_clang_library(clangInstallAPI
DylibVerifier.cpp
FileList.cpp
Frontend.cpp
HeaderFile.cpp
Visitor.cpp
LINK_LIBS
clangAST
clangBasic
clangLex
)