Browse Source

ENH: Added documentation of specifying an existing build tree as an argument.

Brad King 22 years ago
parent
commit
8017a17f57
3 changed files with 5 additions and 3 deletions
  1. 2 1
      Source/CursesDialog/ccmake.cxx
  2. 1 1
      Source/MFCDialog/CMakeSetup.cpp
  3. 2 1
      Source/cmakemain.cxx

+ 2 - 1
Source/CursesDialog/ccmake.cxx

@@ -39,7 +39,8 @@ static const cmDocumentationEntry cmDocumentationName[] =
 static const cmDocumentationEntry cmDocumentationUsage[] =
 static const cmDocumentationEntry cmDocumentationUsage[] =
 {
 {
   {0,
   {0,
-   "  ccmake <path-to-source>", 0},
+   "  ccmake <path-to-source>\n"
+   "  ccmake <path-to-existing-build>", 0},
   {0,0,0}
   {0,0,0}
 };
 };
 
 

+ 1 - 1
Source/MFCDialog/CMakeSetup.cpp

@@ -23,7 +23,7 @@ static const cmDocumentationEntry cmDocumentationUsage[] =
   {0,
   {0,
    "  CMakeSetup [options]\n"
    "  CMakeSetup [options]\n"
    "  CMakeSetup [options] <path-to-source>\n"
    "  CMakeSetup [options] <path-to-source>\n"
-   "  CMakeSetup [options] <path-to-build>", 0},
+   "  CMakeSetup [options] <path-to-existing-build>", 0},
   {0,0,0}
   {0,0,0}
 };
 };
 
 

+ 2 - 1
Source/cmakemain.cxx

@@ -33,7 +33,8 @@ static const cmDocumentationEntry cmDocumentationName[] =
 static const cmDocumentationEntry cmDocumentationUsage[] =
 static const cmDocumentationEntry cmDocumentationUsage[] =
 {
 {
   {0,
   {0,
-   "  cmake [options] <path-to-source>", 0},
+   "  cmake [options] <path-to-source>\n"
+   "  cmake [options] <path-to-existing-build>", 0},
   {0,0,0}
   {0,0,0}
 };
 };