authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-11-23 18:01:57+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-11-23 12:44:54-08:00
log70c8cabb34606b61e2d7fcf3c0217e6bd0c3cefa
treeeed450040865f1a44f7e7b123ed36f8590c69a75
parent9d2fe1682f19bd21a393deeea2c4173b4429b482

Update the minimum cmake version we require

Recent versions of cmake complain about it: << CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. >> We don't require anything from version 2.8.5, and version 2.8.12 was released in 2011, so it is very unlikely that anyone still uses 2.8.5.

1 files changed, 1 insertions(+), 1 deletions(-)

CMakeLists.txt+1-1
...@@ -1,4 +1,4 @@...@@ -1,4 +1,4 @@
1cmake_minimum_required(VERSION 2.8.5)1cmake_minimum_required(VERSION 2.8.12)
22
3# Use ccache if possible3# Use ccache if possible
4FIND_PROGRAM(CCACHE_PROGRAM ccache)4FIND_PROGRAM(CCACHE_PROGRAM ccache)