diff options
author | Brad King <brad.king@kitware.com> | 2018-01-24 13:49:56 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-01-24 13:50:01 (GMT) |
commit | 2de6aa846ffbfb8fe258828fc96121a514a31284 (patch) | |
tree | f67fd74e77f5ac725194bf2123055bbe72a63135 /Source | |
parent | 52573b32397caed753ac9e5318d77786a1ff801e (diff) | |
parent | da1a500ceee74e61c7f1e082618911bb5f98ece6 (diff) | |
download | CMake-2de6aa846ffbfb8fe258828fc96121a514a31284.zip CMake-2de6aa846ffbfb8fe258828fc96121a514a31284.tar.gz CMake-2de6aa846ffbfb8fe258828fc96121a514a31284.tar.bz2 |
Merge topic 'vcxproj-spaces'
da1a500c cmVisualStudio10TargetGenerator: remove redundant space char in some tags
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !1684
Diffstat (limited to 'Source')
-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 1b09600..a511337 100644 --- a/Source/cmVisualStudio10TargetGenerator.cxx +++ b/Source/cmVisualStudio10TargetGenerator.cxx @@ -1992,7 +1992,7 @@ void cmVisualStudio10TargetGenerator::WriteAllSources() if (si.Kind == cmGeneratorTarget::SourceKindObjectSource) { // FIXME: refactor generation to avoid tracking XML syntax state. - this->WriteSource(tool, si.Source, " "); + this->WriteSource(tool, si.Source, ""); bool have_nested = this->OutputSourceSpecificFlags(si.Source); if (!exclude_configs.empty()) { if (!have_nested) { |