cmake/Source/cmVersionMacros.h

14 lines
404 B
C
Raw Normal View History

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)
2016-07-09 11:21:54 +02:00
#define CMake_VERSION_IS_RELEASE 1
2009-10-04 10:30:41 +03:00
#endif
#endif