mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 00:59:19 -06:00
cmList: Add container conversion to string
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
#include "cmInstallExportGenerator.h"
|
||||
#include "cmInstallFileSetGenerator.h"
|
||||
#include "cmInstallTargetGenerator.h"
|
||||
#include "cmList.h"
|
||||
#include "cmLocalGenerator.h"
|
||||
#include "cmMakefile.h"
|
||||
#include "cmMessageType.h"
|
||||
@@ -430,7 +431,7 @@ void cmExportInstallFileGenerator::SetImportLocationProperty(
|
||||
}
|
||||
|
||||
// Store the property.
|
||||
properties[prop] = cmJoin(objects, ";");
|
||||
properties[prop] = cmList::to_string(objects);
|
||||
importedLocations.insert(prop);
|
||||
} else {
|
||||
if (target->IsFrameworkOnApple() && target->HasImportLibrary(config)) {
|
||||
|
||||
Reference in New Issue
Block a user