cmVersionMacros.h 404 B

12345678910111213
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmVersionMacros_h
  4. #define cmVersionMacros_h
  5. #include "cmVersionConfig.h"
  6. #define CMake_VERSION_PATCH_IS_RELEASE(patch) ((patch) < 20000000)
  7. #if CMake_VERSION_PATCH_IS_RELEASE(CMake_VERSION_PATCH)
  8. #define CMake_VERSION_IS_RELEASE 1
  9. #endif
  10. #endif