From 7eb0419871d1513cdf9f4243a088b947e6cc1204 Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Tue, 21 May 2024 23:50:04 +0200
Subject: [PATCH] Increase some tools min versions

This is mainly due to requirements of HighFive

CMake -> 3.19
g++   -> 10
clang -> 11
---
 CMakeLists.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index b7f6f72f6..8deb3a492 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION 3.16)
+cmake_minimum_required (VERSION 3.19)
 
 # CMake utils
 list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
@@ -83,8 +83,8 @@ endif()
 #------------------------------------------------------
 
 # Checks if compiler version is compatible with Pugs sources
-set(GNU_CXX_MIN_VERSION "9.0.0")
-set(CLANG_CXX_MIN_VERSION "10.0.0")
+set(GNU_CXX_MIN_VERSION "10.0.0")
+set(CLANG_CXX_MIN_VERSION "11.0.0")
 
 #------------------------------------------------------
 # Change Kokkos namespace to avoid conflicts
-- 
GitLab