Merge topic 'curl-tls-verify'
[kiteware-cmake.git] / Source / cmVersion.cxx
bloba091b91a76c8ef00c89bdf362e6507a17cda0afc
1 /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
2 file Copyright.txt or https://cmake.org/licensing for details. */
3 #include "cmVersion.h"
5 #include "cmVersionConfig.h"
7 unsigned int cmVersion::GetMajorVersion()
9 return CMake_VERSION_MAJOR;
11 unsigned int cmVersion::GetMinorVersion()
13 return CMake_VERSION_MINOR;
15 unsigned int cmVersion::GetPatchVersion()
17 return CMake_VERSION_PATCH;
19 unsigned int cmVersion::GetTweakVersion()
21 return 0;
24 const char* cmVersion::GetCMakeVersion()
26 return CMake_VERSION;