From af2fda22b3b3745520ef38e9aaa757484871ee0c Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Sat, 15 Feb 2020 00:51:13 +0100 Subject: [PATCH] cmake: Set CMake min version to 3.13 for CMP0079 Signed-off-by: Sylvain Munaut --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 56c1a6b..7a2cf9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ ######################################################################## # Project setup ######################################################################## -cmake_minimum_required(VERSION 3.8) +cmake_minimum_required(VERSION 3.13) include(GNUInstallDirs) project(gr-osmosdr CXX C) enable_testing()