From 62059bc1823097c028b19aeaa836b33d4ce04b7f Mon Sep 17 00:00:00 2001 From: "Maxim [maxirmx] Samsonov" Date: Fri, 3 Nov 2023 21:44:25 +0300 Subject: [PATCH] Fixed cmake_minimum_required directive --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 271f34763..6d378d244 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,11 +16,11 @@ # dwarfs. If not, see . # +cmake_minimum_required(VERSION 3.25.0) + project(dwarfs) include(ExternalProject) -cmake_minimum_required(VERSION 3.24.0) - include(CheckCXXSourceCompiles) option(WITH_TESTS "build with tests" OFF)