diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-10 18:54:57 (GMT) |
commit | 89e5fc63fec560bec27d8517cc74ec41232736a0 (patch) | |
tree | e4b19753c7602a1224853ba1656f88ce53fb37fc /Source/cmakemain.cxx | |
parent | 509e383aacb65a501b20ce9a5520a31daff152e3 (diff) | |
download | CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.zip CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.gz CMake-89e5fc63fec560bec27d8517cc74ec41232736a0.tar.bz2 |
STYLE: fix line lengths
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 1b52f26..cc8e80d 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -76,7 +76,8 @@ static const cmDocumentationEntry cmDocumentationOptions[] = "Only load the cache. Do not actually run configure and generate steps."}, {"-P <file>", "Process script mode.", "Process the given cmake file as a script written in the CMake language. " - "No configure or generate step is performed and the cache is not modified."}, + "No configure or generate step is performed and the cache is not" + " modified."}, {"--help-command cmd [file]", "Print help for a single command and exit.", "Full documentation specific to the given command is displayed."}, {"--help-command-list [file]", "List available listfile commands and exit.", @@ -133,7 +134,8 @@ int do_cmake(int ac, char** av) if ( cmSystemTools::GetCurrentWorkingDirectory().size() == 0 ) { - std::cerr << "Current working directory cannot be established." << std::endl; + std::cerr << "Current working directory cannot be established." + << std::endl; nocwd = 1; } @@ -173,7 +175,9 @@ int do_cmake(int ac, char** av) #else if ( nocwd || ac == 1 ) { - std::cout << "Bootstrap CMake should not be used outside CMake build process." << std::endl; + std::cout << + "Bootstrap CMake should not be used outside CMake build process." + << std::endl; return 0; } #endif @@ -253,7 +257,8 @@ int do_cmake(int ac, char** av) int res = cm.Run(args, view_only); if ( list_cached || list_all_cached ) { - cmCacheManager::CacheIterator it = cm.GetCacheManager()->GetCacheIterator(); + cmCacheManager::CacheIterator it = + cm.GetCacheManager()->GetCacheIterator(); std::cout << "-- Cache values" << std::endl; for ( it.Begin(); !it.IsAtEnd(); it.Next() ) { @@ -268,7 +273,8 @@ int do_cmake(int ac, char** av) { std::cout << "// " << it.GetProperty("HELPSTRING") << std::endl; } - std::cout << it.GetName() << ":" << cmCacheManager::TypeToString(it.GetType()) + std::cout << it.GetName() << ":" << + cmCacheManager::TypeToString(it.GetType()) << "=" << it.GetValue() << std::endl; if ( list_help ) { |