diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-01-23 00:34:40 (GMT) |
---|---|---|
committer | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-01-23 00:34:40 (GMT) |
commit | da1a500ceee74e61c7f1e082618911bb5f98ece6 (patch) | |
tree | 8076489339ee43c2a9a43e62d147e773a1fdc5fa /Source/cmVisualStudio10TargetGenerator.cxx | |
parent | b058d92b33ab37a56ac4dcf2f1e49aec89f554e3 (diff) | |
download | CMake-da1a500ceee74e61c7f1e082618911bb5f98ece6.zip CMake-da1a500ceee74e61c7f1e082618911bb5f98ece6.tar.gz CMake-da1a500ceee74e61c7f1e082618911bb5f98ece6.tar.bz2 |
cmVisualStudio10TargetGenerator: remove redundant space char in some tags
Many source tags become identical to those created by MSVC
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.cxx')
-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) { |