From 9b9a2d20ff2d7b1a770d25eff357bc06db03e9ab Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sun, 22 Nov 2020 14:23:35 +0100 Subject: [PATCH] Raise upper CMake version to 3.19 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9c0a2f896..d19c8dd8f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,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.18) +cmake_minimum_required(VERSION 2.8.12...3.19) project(gnss-sdr CXX C) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/Modules)