summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-13 13:14:11 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-13 13:14:11 (GMT)
commit45b7a5befc3574f273ffd93bf5e5c5a34e9fa517 (patch)
treed0b3dad089aa7692460493bdda665703bcb57325 /Source
parentd87595ede3d958fbece3eedcc312d1e429c7ae10 (diff)
downloadCMake-45b7a5befc3574f273ffd93bf5e5c5a34e9fa517.zip
CMake-45b7a5befc3574f273ffd93bf5e5c5a34e9fa517.tar.gz
CMake-45b7a5befc3574f273ffd93bf5e5c5a34e9fa517.tar.bz2
Add space between arguments
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalVisualStudio6Generator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx
index 73a91dc..e6c75c0 100644
--- a/Source/cmLocalVisualStudio6Generator.cxx
+++ b/Source/cmLocalVisualStudio6Generator.cxx
@@ -863,6 +863,10 @@ void cmLocalVisualStudio6Generator::WriteDSPHeader(std::ostream& fout, const cha
}
if ( m_Makefile->GetDefinition("CMAKE_CXX_FLAGS") )
{
+ if ( flags.size() > 0 )
+ {
+ flags += " ";
+ }
flags += m_Makefile->GetDefinition("CMAKE_CXX_FLAGS");
}