Files
CMake/Tests/RunCMake/export/ExportLinkInterfaces.cmake
Taylor Sasser b209c41dfa export(TARGETS): Restore EXPORT_LINK_INTERFACE_LIBRARIES
Refactoring in commit 998495cb49 (cmExportCommand: Port to
cmSubcommandTable, 2025-07-15) accidentally removed support for the
`EXPORT_LINK_INTERFACE_LIBRARIES` argument.  Restore it with a test.

Fixes: #27302
2025-10-14 13:03:22 -04:00

7 lines
104 B
CMake

enable_language(CXX)
add_library(foo empty.cpp)
export(TARGETS foo
EXPORT_LINK_INTERFACE_LIBRARIES
)