From cc5c7753b80017b512e5df8343475c37f610a13c Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Mon, 10 May 2021 15:28:26 +0200 Subject: [PATCH] cmake: lower minimum required version to 3.15 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa291a9..d5c958f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ # Build system for the libimg library for gint -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.15) project(libimg VERSION 2.4.0 LANGUAGES C) -find_package(Gint 2.2.1 REQUIRED) +find_package(Gint 2.4.0 REQUIRED) configure_file(libimg.h libimg.h)