mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 05:39:57 -05:00
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
This commit is contained in:
@@ -72,7 +72,8 @@ static bool HandleTargetsMode(std::vector<std::string> const& args,
|
||||
.Bind("CXX_MODULES_DIRECTORY"_s, &Arguments::CxxModulesDirectory)
|
||||
.Bind("TARGETS"_s, &Arguments::Targets)
|
||||
.Bind("APPEND"_s, &Arguments::Append)
|
||||
.Bind("ANDROID_MK"_s, &Arguments::AndroidMKFile);
|
||||
.Bind("ANDROID_MK"_s, &Arguments::AndroidMKFile)
|
||||
.Bind("EXPORT_LINK_INTERFACE_LIBRARIES"_s, &Arguments::ExportOld);
|
||||
|
||||
std::vector<std::string> unknownArgs;
|
||||
Arguments arguments = parser.Parse(args, &unknownArgs);
|
||||
|
||||
Reference in New Issue
Block a user