From a30aee8b9013c56fc2356aff31fc2f84c6faa39f Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 16 Sep 2022 14:27:18 +0200 Subject: [PATCH] CMakeLists.txt: bump minimum CMake version --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f6f4fab..f46c072 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,5 @@ -cmake_minimum_required(VERSION 3.13) +# SDL::SDL was defined on 3.20. +cmake_minimum_required(VERSION 3.20) set(TOOLS_PREFIX ${CMAKE_BINARY_DIR}/tools) include(ExternalProject)