diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2015-07-11 17:35:59 -0500 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2015-07-11 17:35:59 -0500 |
commit | a522d8c1e72b3875805750cba9556fd303b9c8b2 (patch) | |
tree | c3c45a4e498e7cf36ed98b7094dfbab69370df4b | |
parent | 1cd96016167d169df7fcd7527e326241e2d2a52c (diff) | |
parent | 37c84dc58f43c609ddadff3f9ff25c1f5b52a746 (diff) | |
download | libgit2-a522d8c1e72b3875805750cba9556fd303b9c8b2.tar.gz |
Merge pull request #3292 from tkelman/patch-1
Increase required version of cmake to 2.8
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 994eed5e1..20e3272f9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ # > cmake --build . --target install PROJECT(libgit2 C) -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) +CMAKE_MINIMUM_REQUIRED(VERSION 2.8) CMAKE_POLICY(SET CMP0015 NEW) # Add find modules to the path @@ -88,7 +88,7 @@ Under Unix-like systems, like Linux, \*BSD and Mac OS X, libgit2 expects `pthrea they should be installed by default on all systems. Under Windows, libgit2 uses the native Windows API for threading. -The `libgit2` library is built using [CMake](<http://www.cmake.org>) (version 2.6 or newer) on all platforms. +The `libgit2` library is built using [CMake](<http://www.cmake.org>) (version 2.8 or newer) on all platforms. On most systems you can build the library using the following commands |