From c197c6928128558e24ee094286e494e74b272f20 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 6 Jun 2015 22:44:44 +0200 Subject: [PATCH 1/3] cmDocumentation: Remove unused include. --- Source/cmDocumentation.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h index 8854c3618..b6c5fde7e 100644 --- a/Source/cmDocumentation.h +++ b/Source/cmDocumentation.h @@ -13,7 +13,6 @@ #define _cmDocumentation_h #include "cmStandardIncludes.h" -#include "cmProperty.h" #include "cmDocumentationFormatter.h" #include "cmDocumentationSection.h" #include "cmake.h" From e133e40937031004d11b0d16289cee1bf0dc5e4f Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 6 Jun 2015 22:52:44 +0200 Subject: [PATCH 2/3] cmExportTryCompileFileGenerator: Remove unused variable. --- Source/cmExportTryCompileFileGenerator.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/cmExportTryCompileFileGenerator.cxx b/Source/cmExportTryCompileFileGenerator.cxx index eb8d1935f..6c5f48fb9 100644 --- a/Source/cmExportTryCompileFileGenerator.cxx +++ b/Source/cmExportTryCompileFileGenerator.cxx @@ -99,8 +99,6 @@ cmExportTryCompileFileGenerator::PopulateProperties(cmTarget const* target, || i->first.find("IMPORTED_LINK_DEPENDENT_LIBRARIES") == 0 || i->first.find("INTERFACE_LINK_LIBRARIES") == 0) { - const std::string libs = i->second.GetValue(); - std::string evalResult = this->FindTargets(i->first, target, emitted); From 4ab7d407a5e46f91bf57fb1f9be7387ba989e0ec Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 6 Jun 2015 22:54:50 +0200 Subject: [PATCH 3/3] cmExportTryCompileFileGenerator: Add newline between methods. --- Source/cmExportTryCompileFileGenerator.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmExportTryCompileFileGenerator.cxx b/Source/cmExportTryCompileFileGenerator.cxx index 6c5f48fb9..dfb991bf5 100644 --- a/Source/cmExportTryCompileFileGenerator.cxx +++ b/Source/cmExportTryCompileFileGenerator.cxx @@ -116,6 +116,7 @@ cmExportTryCompileFileGenerator::PopulateProperties(cmTarget const* target, } } } + std::string cmExportTryCompileFileGenerator::InstallNameDir(cmTarget* target, const std::string& config)