summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalVisualStudio6Generator.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-12-08 00:36:03 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-12-08 00:36:03 (GMT)
commit97392a754cdd27173b2a7f11f9792f1e07d8a802 (patch)
tree2c28c94c1cdda0c5e29733d50be2a085b4d49516 /Source/cmLocalVisualStudio6Generator.cxx
parent715788108c4d308c49015788d9c276334dae0224 (diff)
downloadCMake-97392a754cdd27173b2a7f11f9792f1e07d8a802.zip
CMake-97392a754cdd27173b2a7f11f9792f1e07d8a802.tar.gz
CMake-97392a754cdd27173b2a7f11f9792f1e07d8a802.tar.bz2
STYLE: fix link length issues
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r--Source/cmLocalVisualStudio6Generator.cxx42
1 files changed, 31 insertions, 11 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx
index ec09fd1..6a60801 100644
--- a/Source/cmLocalVisualStudio6Generator.cxx
+++ b/Source/cmLocalVisualStudio6Generator.cxx
@@ -1517,17 +1517,37 @@ void cmLocalVisualStudio6Generator
std::string minsizeDefines = " ";
std::string debugrelDefines = " ";
- this->AppendDefines(defines,this->Makefile->GetProperty("COMPILE_DEFINITIONS"), 0);
- this->AppendDefines(debugDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_DEBUG"), 0);
- this->AppendDefines(releaseDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
- this->AppendDefines(minsizeDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
- this->AppendDefines(debugrelDefines,this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
-
- this->AppendDefines(defines,target.GetProperty("COMPILE_DEFINITIONS"), 0);
- this->AppendDefines(debugDefines,target.GetProperty("COMPILE_DEFINITIONS_DEBUG"), 0);
- this->AppendDefines(releaseDefines,target.GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
- this->AppendDefines(minsizeDefines,target.GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
- this->AppendDefines(debugrelDefines,target.GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
+ this->AppendDefines(
+ defines,
+ this->Makefile->GetProperty("COMPILE_DEFINITIONS"), 0);
+ this->AppendDefines(
+ debugDefines,
+ this->Makefile->GetProperty("COMPILE_DEFINITIONS_DEBUG"),0);
+ this->AppendDefines(
+ releaseDefines,
+ this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
+ this->AppendDefines(
+ minsizeDefines,
+ this->Makefile->GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
+ this->AppendDefines(
+ debugrelDefines,
+ this->Makefile->GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
+
+ this->AppendDefines(
+ defines,
+ target.GetProperty("COMPILE_DEFINITIONS"), 0);
+ this->AppendDefines(
+ debugDefines,
+ target.GetProperty("COMPILE_DEFINITIONS_DEBUG"), 0);
+ this->AppendDefines(
+ releaseDefines,
+ target.GetProperty("COMPILE_DEFINITIONS_RELEASE"), 0);
+ this->AppendDefines(
+ minsizeDefines,
+ target.GetProperty("COMPILE_DEFINITIONS_MINSIZEREL"), 0);
+ this->AppendDefines(
+ debugrelDefines,
+ target.GetProperty("COMPILE_DEFINITIONS_RELWITHDEBINFO"), 0);
flags += defines;
flagsDebug += debugDefines;
flagsRelease += releaseDefines;