From c655f0c417f66096a62bb837e163ec636665dd69 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 26 Sep 2014 10:12:31 -0400 Subject: [PATCH] VS: Drop GenerateManifest from .vcxproj files for non-MS tools The .vcxproj file content generated by OutputLinkIncremental is specific to MS tools, so drop it when using other tools. --- Source/cmVisualStudio10TargetGenerator.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index 3cb0c6131..a13cbd29b 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -1593,6 +1593,10 @@ void cmVisualStudio10TargetGenerator:: OutputLinkIncremental(std::string const& configName) { + if(!this->MSTools) + { + return; + } // static libraries and things greater than modules do not need // to set this option if(this->Target->GetType() == cmTarget::STATIC_LIBRARY