2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2004-10-22 15:44:54 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2004-10-22 15:44:54 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2004-10-22 15:44:54 -04:00
|
|
|
#include "cmVersion.h"
|
|
|
|
|
2009-03-05 15:17:07 -05:00
|
|
|
#include "cmVersionMacros.h"
|
2007-11-14 21:17:53 -05:00
|
|
|
|
2009-03-05 15:17:07 -05:00
|
|
|
unsigned int cmVersion::GetMajorVersion() { return CMake_VERSION_MAJOR; }
|
|
|
|
unsigned int cmVersion::GetMinorVersion() { return CMake_VERSION_MINOR; }
|
|
|
|
unsigned int cmVersion::GetPatchVersion() { return CMake_VERSION_PATCH; }
|
2014-02-19 09:15:42 -05:00
|
|
|
unsigned int cmVersion::GetTweakVersion() { return 0; }
|
2004-10-22 15:44:54 -04:00
|
|
|
|
2009-03-05 15:17:07 -05:00
|
|
|
const char* cmVersion::GetCMakeVersion()
|
2004-10-22 15:44:54 -04:00
|
|
|
{
|
2010-04-23 09:44:23 -04:00
|
|
|
return CMake_VERSION;
|
2004-10-22 15:44:54 -04:00
|
|
|
}
|