1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmVersion.h,v $
6 Date: $Date: 2009-03-05 20:17:06 $
7 Version: $Revision: 1.3 $
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();
34 static unsigned int GetMinorVersion();
35 static unsigned int GetPatchVersion();
36 static const char* GetCMakeVersion();
39 #define CMake_VERSION_ENCODE(major, minor, patch) \
40 ((major)*0x10000u + (minor)*0x100u + (patch))