summaryrefslogtreecommitdiffstats
path: root/Source/cmProjectCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-05-12 17:44:15 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-05-12 17:44:15 (GMT)
commit2bb24565e5fb9ba99aa3164332a81504a7eb51b0 (patch)
tree41bdef6a46b275c37f4d958959210c9c08baf7d3 /Source/cmProjectCommand.cxx
parent3c4bfa10037d91f89fc25c51da5239136148bfa6 (diff)
downloadCMake-2bb24565e5fb9ba99aa3164332a81504a7eb51b0.zip
CMake-2bb24565e5fb9ba99aa3164332a81504a7eb51b0.tar.gz
CMake-2bb24565e5fb9ba99aa3164332a81504a7eb51b0.tar.bz2
STYLE: fix line length
Diffstat (limited to 'Source/cmProjectCommand.cxx')
-rw-r--r--Source/cmProjectCommand.cxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/Source/cmProjectCommand.cxx b/Source/cmProjectCommand.cxx
index bdbafbf..5ae4c16 100644
--- a/Source/cmProjectCommand.cxx
+++ b/Source/cmProjectCommand.cxx
@@ -31,12 +31,14 @@ bool cmProjectCommand::InitialPass(std::vector<std::string> const& args)
std::string srcdir = args[0];
srcdir += "_SOURCE_DIR";
- this->Makefile->AddCacheDefinition(bindir.c_str(),
- this->Makefile->GetCurrentOutputDirectory(),
- "Value Computed by CMake", cmCacheManager::STATIC);
- this->Makefile->AddCacheDefinition(srcdir.c_str(),
- this->Makefile->GetCurrentDirectory(),
- "Value Computed by CMake", cmCacheManager::STATIC);
+ this->Makefile->AddCacheDefinition
+ (bindir.c_str(),
+ this->Makefile->GetCurrentOutputDirectory(),
+ "Value Computed by CMake", cmCacheManager::STATIC);
+ this->Makefile->AddCacheDefinition
+ (srcdir.c_str(),
+ this->Makefile->GetCurrentDirectory(),
+ "Value Computed by CMake", cmCacheManager::STATIC);
bindir = "PROJECT_BINARY_DIR";
srcdir = "PROJECT_SOURCE_DIR";