1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmVersion.h,v $
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 =========================================================================*/
20 #include "cmStandardIncludes.h"
23 * \brief Helper class for providing CMake and CTest version information.
25 * Finds all version related information.
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();