diff options
author | Ken Martin <ken.martin@kitware.com> | 2003-08-11 18:45:16 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2003-08-11 18:45:16 (GMT) |
commit | 3baca1e34f5b05c464d456cdaac584767aa23941 (patch) | |
tree | 001224ed2373aa6a4d7b3623ffc4ced7ed511b47 /Source/cmMakefile.cxx | |
parent | 3c1292a388d7ef95dc628b03143a3691037596bd (diff) | |
download | CMake-3baca1e34f5b05c464d456cdaac584767aa23941.zip CMake-3baca1e34f5b05c464d456cdaac584767aa23941.tar.gz CMake-3baca1e34f5b05c464d456cdaac584767aa23941.tar.bz2 |
added beta release support
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index bcf20af..178e7ac 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -74,7 +74,11 @@ const char* cmMakefile::GetReleaseVersion() #if CMake_VERSION_MINOR & 1 return "development"; #else +# if CMake_VERSION_PATCH == 0 + return "beta"; +# else return "patch " CMAKE_TO_STRING(CMake_VERSION_PATCH); +# endif #endif } |