From 8477ac136e9cd86cbe974de6bcc9077590875a44 Mon Sep 17 00:00:00 2001 From: Mikko Johannes Koivunalho Date: Sun, 19 Sep 2021 20:04:29 +0200 Subject: [PATCH] Update CMake required from 3.9 to 3.13 https://github.com/libcheck/check/issues/325 cmake_minimum_required(...) is version 3.9 required in top level CMakeLists.txt, In this file, the funcion add_link_options(...) is invoked at line 251 and it`s news from CMAKE version 3.13. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d3ac070..2ee580bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ # Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # -cmake_minimum_required(VERSION 3.9 FATAL_ERROR) +cmake_minimum_required(VERSION 3.13 FATAL_ERROR) include(CheckCCompilerFlag)