From 91c9522ee59654e2f4d9701947a4600a4436d076 Mon Sep 17 00:00:00 2001
From: danblae <43992405+danblae@users.noreply.github.com>
Date: Mon, 24 Jul 2023 08:44:05 +0200
Subject: [PATCH] Increase cmake_min_req to prevent deprecation

Cmake 3.27+ complains about cmake 3.5 or lower, with a deprecation warning. Increasing the min_req does not break anything else and fixes that warning.
---
 CMakeRC.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeRC.cmake b/CMakeRC.cmake
index 5cad705..6a5147a 100644
--- a/CMakeRC.cmake
+++ b/CMakeRC.cmake
@@ -34,7 +34,7 @@ endif()
 
 set(_version 2.0.0)
 
-cmake_minimum_required(VERSION 3.3)
+cmake_minimum_required(VERSION 3.12)
 include(CMakeParseArguments)
 
 if(COMMAND cmrc_add_resource_library)
-- 
2.54.0

