From 35ca59d5cf91b60ac0f110e0928203bb9754281d Mon Sep 17 00:00:00 2001 From: "Roscoe A. Bartlett" Date: Tue, 21 Feb 2023 11:26:14 -0700 Subject: [PATCH] Update CMake min version from 3.17 to 3.23 (#10355) All of the major systems at SNL and LLNL should have CMake 3.23+ installed. This allows the elimination of a lot of technical debt in TriBITS (see TriBITSPub/TriBITS#411). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 850088379161..535767f04195 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,7 @@ # To be safe, define your minimum CMake version. This may be newer than the # min required by TriBITS. -CMAKE_MINIMUM_REQUIRED(VERSION 3.17.0 FATAL_ERROR) +CMAKE_MINIMUM_REQUIRED(VERSION 3.23.0 FATAL_ERROR) # Must set the project name as a variable at very beginning before including anything else # We set the project name in a separate file so CTest scripts can use it.