summaryrefslogtreecommitdiffstats
path: root/Source/cmake.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-03-19 22:05:21 (GMT)
committerStephen Kelly <steveire@gmail.com>2012-03-19 22:05:21 (GMT)
commit5b8983ee0124a0abd1f3072fdfc7fca852722600 (patch)
tree85d870f488c9213263f354385604098f46ac7597 /Source/cmake.h
parent1bfe81e01e1fb8b4e790082d15ca7cf7d7b7f6ae (diff)
downloadCMake-5b8983ee0124a0abd1f3072fdfc7fca852722600.zip
CMake-5b8983ee0124a0abd1f3072fdfc7fca852722600.tar.gz
CMake-5b8983ee0124a0abd1f3072fdfc7fca852722600.tar.bz2
Fix some typos in the docs comments.
Diffstat (limited to 'Source/cmake.h')
-rw-r--r--Source/cmake.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmake.h b/Source/cmake.h
index 161e656..94c6f12 100644
--- a/Source/cmake.h
+++ b/Source/cmake.h
@@ -102,8 +102,8 @@ class cmake
//@{
/**
* Set/Get the home directory (or output directory) in the project. The
- * home directory is the top directory of the project. It is where
- * cmake was run. Remember that CMake processes
+ * home directory is the top directory of the project. It is the
+ * path-to-source cmake was run with. Remember that CMake processes
* CMakeLists files by recursing up the tree starting at the StartDirectory
* and going up until it reaches the HomeDirectory.
*/
@@ -294,7 +294,7 @@ class cmake
void SetWorkingMode(WorkingMode mode) { this->CurrentWorkingMode = mode; }
WorkingMode GetWorkingMode() { return this->CurrentWorkingMode; }
- ///! Debug the try compile stuff by not delelting the files
+ ///! Debug the try compile stuff by not deleting the files
bool GetDebugTryCompile(){return this->DebugTryCompile;}
void DebugTryCompileOn(){this->DebugTryCompile = true;}
@@ -372,7 +372,7 @@ class cmake
/** Display a message to the user. */
void IssueMessage(cmake::MessageType t, std::string const& text,
cmListFileBacktrace const& backtrace);
- // * run the --build option
+ ///! run the --build option
int Build(const std::string& dir,
const std::string& target,
const std::string& config,
@@ -436,7 +436,7 @@ protected:
void SetDirectoriesFromFile(const char* arg);
//! Make sure all commands are what they say they are and there is no
- //macros.
+ /// macros.
void CleanupCommandsAndMacros();
void GenerateGraphViz(const char* fileName) const;