ENH: fix uppercase version so defines are not upper as well
[cmake.git] / Source / cmVersion.h
blob53a1bbfed23224527f3d34deb902c5ee3944f9fc
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmVersion.h,v $
5 Language: C++
6 Date: $Date: 2005-06-17 13:49:06 $
7 Version: $Revision: 1.2 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmVersion_h
18 #define cmVersion_h
20 #include "cmStandardIncludes.h"
22 /** \class cmVersion
23 * \brief Helper class for providing CMake and CTest version information.
25 * Finds all version related information.
27 class cmVersion
29 public:
30 /**
31 * Return major and minor version numbers for cmake.
33 static unsigned int GetMajorVersion() { return CMake_VERSION_MAJOR; }
34 static unsigned int GetMinorVersion() { return CMake_VERSION_MINOR; }
35 static unsigned int GetPatchVersion() { return CMake_VERSION_PATCH; }
36 static std::string GetReleaseVersion();
37 static std::string GetCMakeVersion();
40 #endif