From ab2f58b7fe9de1c746cb0a955b523b407b46e2a0 Mon Sep 17 00:00:00 2001 From: Alastair Robertson Date: Tue, 14 Feb 2023 08:34:40 -0800 Subject: [PATCH] Bump minimum CMake version to 3.19 We are already using CMP0109 which depends on 3.19. This change just provides more useful error messages when using older versions. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 41aa24a..439ada1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # object-introspection -cmake_minimum_required(VERSION 3.13) +cmake_minimum_required(VERSION 3.19) project(object-introspection) # Lets find_program() locate SETUID binaries