summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2010-02-02 02:43:51 (GMT)
committerDavid Cole <david.cole@kitware.com>2010-02-02 02:43:51 (GMT)
commit9a35d67bce809fd165dd1ebbeb2eaf8d01d2d284 (patch)
treeb95faea711141f6b024c4f4ea40bdb0677acfa0c /Source/cmLocalGenerator.cxx
parent3c2ecbe74eb0d01dc276b98b1307b2580b81adc6 (diff)
downloadCMake-9a35d67bce809fd165dd1ebbeb2eaf8d01d2d284.zip
CMake-9a35d67bce809fd165dd1ebbeb2eaf8d01d2d284.tar.gz
CMake-9a35d67bce809fd165dd1ebbeb2eaf8d01d2d284.tar.bz2
Fix line length style issue.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 1937c2b..851e34f 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -1784,7 +1784,8 @@ void cmLocalGenerator::AddArchitectureFlags(std::string& flags,
this->Makefile->GetDefinition("CMAKE_OSX_DEPLOYMENT_TARGET");
std::string isysrootVar = std::string("CMAKE_") + lang + "_HAS_ISYSROOT";
bool hasIsysroot = this->Makefile->IsOn(isysrootVar.c_str());
- std::string deploymentTargetFlagVar = std::string("CMAKE_") + lang + "_OSX_DEPLOYMENT_TARGET_FLAG";
+ std::string deploymentTargetFlagVar =
+ std::string("CMAKE_") + lang + "_OSX_DEPLOYMENT_TARGET_FLAG";
const char* deploymentTargetFlag =
this->Makefile->GetDefinition(deploymentTargetFlagVar.c_str());
bool flagsUsed = false;