From f7cbb16d263f3def194f109ca4445827969dfed5 Mon Sep 17 00:00:00 2001 From: Neil Justice Date: Wed, 20 Nov 2024 20:32:30 -0600 Subject: [PATCH] Increment cmake_minimum_required from 3.5 to 3.10 to fix CMake Deprecation Error in GitHub Actions build --- CMakeLists.txt | 2 +- FileArb/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e074754..d1a0916 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project(FileArb) include(${CMAKE_SOURCE_DIR}/CMakeMacros.cmake) diff --git a/FileArb/CMakeLists.txt b/FileArb/CMakeLists.txt index a6fa317..b0be066 100644 --- a/FileArb/CMakeLists.txt +++ b/FileArb/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.10) project(FileArb) include(${CMAKE_SOURCE_DIR}/CMakeMacros.cmake)