From 3f7a58cff4d7ed8e88f00f886d21667344092ac5 Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Tue, 7 Jan 2025 22:31:34 -0500 Subject: [PATCH] opt in to cmake policies through 3.31 to silence cmake warning --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e978cb..511c0f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Defines AppBase library target. -cmake_minimum_required( VERSION 3.5 ) +cmake_minimum_required( VERSION 3.8...3.31 ) project( AppBase ) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules")