|
@@ -6,6 +6,7 @@
|
|
|
#include "cmComputeLinkDepends.h"
|
|
#include "cmComputeLinkDepends.h"
|
|
|
#include "cmGeneratorTarget.h"
|
|
#include "cmGeneratorTarget.h"
|
|
|
#include "cmGlobalGenerator.h"
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
|
+#include "cmListFileCache.h"
|
|
|
#include "cmLocalGenerator.h"
|
|
#include "cmLocalGenerator.h"
|
|
|
#include "cmMakefile.h"
|
|
#include "cmMakefile.h"
|
|
|
#include "cmMessageType.h"
|
|
#include "cmMessageType.h"
|
|
@@ -406,6 +407,18 @@ cmComputeLinkInformation::~cmComputeLinkInformation()
|
|
|
delete this->OrderDependentRPath;
|
|
delete this->OrderDependentRPath;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+void cmComputeLinkInformation::AppendValues(
|
|
|
|
|
+ std::string& result, std::vector<BT<std::string>>& values)
|
|
|
|
|
+{
|
|
|
|
|
+ for (BT<std::string>& p : values) {
|
|
|
|
|
+ if (result.empty()) {
|
|
|
|
|
+ result.append(" ");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ result.append(p.Value);
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
cmComputeLinkInformation::ItemVector const&
|
|
cmComputeLinkInformation::ItemVector const&
|
|
|
cmComputeLinkInformation::GetItems() const
|
|
cmComputeLinkInformation::GetItems() const
|
|
|
{
|
|
{
|