summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-08-04 14:02:23 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2014-08-04 14:02:23 (GMT)
commit4e22fcf215cdb37c9e440f8825c5945589de338b (patch)
treef91d961fcf9ed313e8dc2f69483656da933ce97f
parent9d9333b26ac18943cd310900dfc88a17d98667e1 (diff)
parent66edd06587bfaafc2cb1f24286925750454ec9cc (diff)
downloadCMake-4e22fcf215cdb37c9e440f8825c5945589de338b.zip
CMake-4e22fcf215cdb37c9e440f8825c5945589de338b.tar.gz
CMake-4e22fcf215cdb37c9e440f8825c5945589de338b.tar.bz2
Merge topic 'vs-vcxproj-missing-newline'
66edd065 VS: Add missing newline after .vcxproj user prop import line
-rw-r--r--Source/cmVisualStudio10TargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.cxx b/Source/cmVisualStudio10TargetGenerator.cxx
index d9013e0..6989d95 100644
--- a/Source/cmVisualStudio10TargetGenerator.cxx
+++ b/Source/cmVisualStudio10TargetGenerator.cxx
@@ -376,7 +376,7 @@ void cmVisualStudio10TargetGenerator::Generate()
this->WriteString("<ImportGroup Label=\"PropertySheets\">\n", 1);
this->WriteString("<Import Project=\"" VS10_USER_PROPS "\""
" Condition=\"exists('" VS10_USER_PROPS "')\""
- " Label=\"LocalAppDataPlatform\" />", 2);
+ " Label=\"LocalAppDataPlatform\" />\n", 2);
this->WriteString("</ImportGroup>\n", 1);
this->WriteString("<PropertyGroup Label=\"UserMacros\" />\n", 1);
this->WritePathAndIncrementalLinkOptions();