mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-08 08:09:42 -06:00
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
7 lines
104 B
CMake
7 lines
104 B
CMake
enable_language(CXX)
|
|
add_library(foo empty.cpp)
|
|
|
|
export(TARGETS foo
|
|
EXPORT_LINK_INTERFACE_LIBRARIES
|
|
)
|