diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-01-02 21:45:30 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-01-02 21:45:30 (GMT) |
commit | b4e27e979556e89dc6bb6c8517cc71d20a717c69 (patch) | |
tree | 190144be530353699997d98a2deb0ccb0637b1a5 /Source/cmake.cxx | |
parent | 79d9bd8a59328b5c51dd10e1d49888ebd05a562f (diff) | |
download | CMake-b4e27e979556e89dc6bb6c8517cc71d20a717c69.zip CMake-b4e27e979556e89dc6bb6c8517cc71d20a717c69.tar.gz CMake-b4e27e979556e89dc6bb6c8517cc71d20a717c69.tar.bz2 |
prints the relese version
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 3c40885..6408030 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -65,7 +65,8 @@ cmake::cmake() void cmake::Usage(const char* program) { std::cerr << "cmake version " << cmMakefile::GetMajorVersion() - << "." << cmMakefile::GetMinorVersion() << "\n"; + << "." << cmMakefile::GetMinorVersion() << " - " + << cmMakefile::GetReleaseVersion() << "\n"; std::cerr << "Usage: " << program << " [srcdir] [options]\n" << "Where cmake is run from the directory where you want the object files written. If srcdir is not specified, the current directory is used for both source and object files.\n"; std::cerr << "Options are:\n"; |