From 53d3d253699342d18c129c255d32821562ec17a6 Mon Sep 17 00:00:00 2001 From: Hans Loeblich Date: Thu, 31 Oct 2024 13:35:12 -0500 Subject: [PATCH] Sync tests/CMakeLists.txt cmake versions requirement with top level requirements. Fixes: CMake Deprecation Warning at tests/CMakeLists.txt:5 (cmake_minimum_required): Compatibility with CMake < 3.5 will be removed from a future version of CMake. --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 067f357ed4..a9f2b3f8d4 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,7 +2,7 @@ #set(DEBUG_OSCD 1) # print debug info during cmake -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.13) if(POLICY CMP0017) # Explicitly use new include policy to avoid globally shadowing included modules # https://cmake.org/cmake/help/v2.8.8/cmake.html#policy:CMP0017