From 7ef659fcc3db3d11190526101f123992728794e0 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 27 Sep 2010 08:37:00 -0400 Subject: [PATCH] VS10: Use $(IntDir) for per-source output directory (#11270) The original implementation of this generator accidentally used "$(Configuration)/" for source-specific object file names. Correct it to use "$(IntDir)/" just like the generators for all previous VS versions. The target-wide output directory is "$(IntDir)/" already. --- Source/cmVisualStudio10TargetGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx index b290aed731..8dfafffbbc 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -767,7 +767,7 @@ bool cmVisualStudio10TargetGenerator::OutputSourceSpecificFlags( hasFlags = true; this->WriteString("", 3); (*this->BuildFileStream ) - << "$(Configuration)/" << objectName << "\n"; + << "$(IntDir)/" << objectName << "\n"; } std::vector *configs = static_cast