From f9082a971a513ec7a93917092d1e430335c36e09 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 23 May 2021 13:20:42 +0200 Subject: [PATCH] Raise CMake max version to 3.20 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a9a607ef4..84e522039 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_BINARY_DIR}) message(FATAL_ERROR "Prevented in-tree build, it is bad practice.\nTry 'cd build && cmake ..' instead.") endif() -cmake_minimum_required(VERSION 2.8.12...3.19) +cmake_minimum_required(VERSION 2.8.12...3.20) project(gnss-sdr CXX C) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)