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.
12 lines
224 B
CMake
12 lines
224 B
CMake
add_clang_unittest(InstallAPITests
|
|
HeaderFileTest.cpp
|
|
FileListTest.cpp
|
|
)
|
|
|
|
clang_target_link_libraries(InstallAPITests
|
|
PRIVATE
|
|
clangInstallAPI
|
|
)
|
|
|
|
target_link_libraries(InstallAPITests PRIVATE LLVMTestingSupport)
|