mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03: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
|
|
)
|