From 304480534c706441aba0d5fa46c8b7a935a76afd Mon Sep 17 00:00:00 2001
From: "Roscoe A. Bartlett" <rabartl@sandia.gov>
Date: Fri, 26 Jul 2024 17:41:56 -0600
Subject: [PATCH] Raise min CMake version from 3.17 to 3.23 for base TriBITS
 project

This was missed on the upgrade of CMake 3.17 to 3.23.  See commit:

  45b514ce "Update CMake min version from 3.17 to 3.23 (#411)"
  Author: Roscoe A. Bartlett <rabartl@sandia.gov>
  Date:   Sat Feb 25 07:01:29 2023 -0700 (1 year, 5 months ago)

CMake 3.23 was already required by TriBITS so this just makes it consistent.
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index aa2037f4f..7f1f5b2f6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -7,7 +7,7 @@
 if (NOT TRIBITS_PROCESSING_PACKAGE)
   # This CMakeLists.txt file is being processed as the TriBITS projects's base
   # CMakeLists.txt file!  (See comments at bottom of this file.)
-  cmake_minimum_required(VERSION 3.17.0 FATAL_ERROR)
+  cmake_minimum_required(VERSION 3.23.0 FATAL_ERROR)
   include("${CMAKE_CURRENT_SOURCE_DIR}/ProjectName.cmake")
   project(${PROJECT_NAME} NONE)
   set(${PROJECT_NAME}_TRIBITS_DIR "${CMAKE_CURRENT_SOURCE_DIR}/tribits" CACHE PATH "")