zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 70c8cabb34606b61e2d7fcf3c0217e6bd0c3cefa (tree)
parent 9d2fe1682f19bd21a393deeea2c4173b4429b482
Author: Frank Denis <github@pureftpd.org>
Date:   Mon, 23 Nov 2020 18:01:57 +0100

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.

Diffstat:
MCMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.5) +cmake_minimum_required(VERSION 2.8.12) # Use ccache if possible FIND_PROGRAM(CCACHE_PROGRAM ccache)