From fce812389109763ac7a97ecf81d60e2aa592a15c Mon Sep 17 00:00:00 2001 From: Sergey Kosarevsky Date: Fri, 6 Dec 2024 16:46:51 -0800 Subject: [PATCH] Update CMake file to CMake version `3.5...3.31` This approach allows us to maintain compatibility with the minimum supported CMake version 3.5, while suppressing all policy warnings up to the latest version 3.31. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 771717c..997f463 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.5) +CMAKE_MINIMUM_REQUIRED(VERSION 3.5...3.31) PROJECT(fast_obj)