From c160a2d6c0fcf22fd1667c69c862366db823f00f Mon Sep 17 00:00:00 2001 From: aineoae86-sys Date: Sun, 5 Jul 2026 18:16:08 +0800 Subject: [PATCH] fix: update unit test CMake minimum version Raise the unit test CMake minimum version to 3.5 so CMake 4 can configure the test project without relying on removed compatibility for older versions. Generated-by: OpenAI Codex Signed-off-by: aineoae86-sys --- test/unit-test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit-test/CMakeLists.txt b/test/unit-test/CMakeLists.txt index 08b1e5a..845dec1 100644 --- a/test/unit-test/CMakeLists.txt +++ b/test/unit-test/CMakeLists.txt @@ -2,7 +2,7 @@ include(${MODULE_ROOT_DIR}/coreSntpFilePaths.cmake) project ("coreSNTP unit tests") -cmake_minimum_required (VERSION 3.2.0) +cmake_minimum_required (VERSION 3.5) # ==================== Define your project name ======================== set(project_name "core_sntp")