Commit 661cf4d4 by Patrick Steinhardt Committed by GitHub

Merge pull request #4375 from mhagger/cmake-version-3.0.x

Fix compilation for CMake versions 3.0.x where x >= 1
parents 8ac8c78c 8bbee8f3
......@@ -14,7 +14,7 @@
PROJECT(libgit2 C)
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.11)
CMAKE_POLICY(SET CMP0015 NEW)
IF (CMAKE_VERSION VERSION_GREATER 3.0)
IF (NOT CMAKE_VERSION VERSION_LESS 3.1)
CMAKE_POLICY(SET CMP0051 NEW)
ENDIF()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment