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