2016-10-30 18:24:19 +01:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2009-10-04 10:30:41 +03:00
|
|
|
#ifndef cmVersionMacros_h
|
|
|
|
#define cmVersionMacros_h
|
|
|
|
|
|
|
|
#include "cmVersionConfig.h"
|
|
|
|
|
2014-08-03 19:52:23 +02:00
|
|
|
#define CMake_VERSION_PATCH_IS_RELEASE(patch) ((patch) < 20000000)
|
|
|
|
#if CMake_VERSION_PATCH_IS_RELEASE(CMake_VERSION_PATCH)
|
2018-08-09 18:06:22 +02:00
|
|
|
# define CMake_VERSION_IS_RELEASE 1
|
2009-10-04 10:30:41 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|