diff options
author | Brad King <brad.king@kitware.com> | 2014-08-04 14:02:23 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-08-04 14:02:23 (GMT) |
commit | 4e22fcf215cdb37c9e440f8825c5945589de338b (patch) | |
tree | f91d961fcf9ed313e8dc2f69483656da933ce97f | |
parent | 9d9333b26ac18943cd310900dfc88a17d98667e1 (diff) | |
parent | 66edd06587bfaafc2cb1f24286925750454ec9cc (diff) | |
download | CMake-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.cxx | 2 |
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(); |