summaryrefslogtreecommitdiffstats
path: root/Source/cmakemain.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-10-09 18:35:25 (GMT)
committerKen Martin <ken.martin@kitware.com>2007-10-09 18:35:25 (GMT)
commit35e13b11f3cce42944e367543b082e7774201e50 (patch)
tree20d811344c7e488cebe7596016601eb71cc12014 /Source/cmakemain.cxx
parent18ce24c7486fedc792276721515c9ddefc62ebee (diff)
downloadCMake-35e13b11f3cce42944e367543b082e7774201e50.zip
CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.gz
CMake-35e13b11f3cce42944e367543b082e7774201e50.tar.bz2
BUG: revert doc changes since VS7 cannot compile them, will implement them in a different manner
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r--Source/cmakemain.cxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx
index 20eaedd..0717cf5 100644
--- a/Source/cmakemain.cxx
+++ b/Source/cmakemain.cxx
@@ -34,31 +34,31 @@
//----------------------------------------------------------------------------
static const cmDocumentationEntry cmDocumentationName[] =
{
- {"",
- " cmake - Cross-Platform Makefile Generator.", ""},
- {"","",""}
+ {0,
+ " cmake - Cross-Platform Makefile Generator.", 0},
+ {0,0,0}
};
//----------------------------------------------------------------------------
static const cmDocumentationEntry cmDocumentationUsage[] =
{
- {"",
+ {0,
" cmake [options] <path-to-source>\n"
- " cmake [options] <path-to-existing-build>", ""},
- {"","",""}
+ " cmake [options] <path-to-existing-build>", 0},
+ {0,0,0}
};
//----------------------------------------------------------------------------
static const cmDocumentationEntry cmDocumentationDescription[] =
{
- {"",
+ {0,
"The \"cmake\" executable is the CMake command-line interface. It may "
"be used to configure projects in scripts. Project configuration "
"settings "
"may be specified on the command line with the -D option. The -i option "
- "will cause cmake to interactively prompt for such settings.", ""},
+ "will cause cmake to interactively prompt for such settings.", 0},
CMAKE_STANDARD_INTRODUCTION,
- {"","",""}
+ {0,0,0}
};
//----------------------------------------------------------------------------
@@ -162,25 +162,25 @@ static const cmDocumentationEntry cmDocumentationOptions[] =
"If a file is specified, the documentation is written into and the output "
"format is determined depending on the filename suffix. Supported are man "
"page, HTML and plain text."},
- {"","",""}
+ {0,0,0}
};
//----------------------------------------------------------------------------
static const cmDocumentationEntry cmDocumentationSeeAlso[] =
{
- {"", "ccmake", ""},
- {"", "ctest", ""},
- {"", "", ""}
+ {0, "ccmake", 0},
+ {0, "ctest", 0},
+ {0, 0, 0}
};
//----------------------------------------------------------------------------
static const cmDocumentationEntry cmDocumentationNOTE[] =
{
- {"",
+ {0,
"CMake no longer configures a project when run with no arguments. "
"In order to configure the project in the current directory, run\n"
- " cmake .", ""},
- {"","",""}
+ " cmake .", 0},
+ {0,0,0}
};
#endif