From b2bdcccd2ae2c82086bbba85c7262e3dc49bdbae Mon Sep 17 00:00:00 2001 From: aineoae86-sys Date: Sun, 5 Jul 2026 18:14:36 +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 8f59148..8a99734 100644 --- a/test/unit-test/CMakeLists.txt +++ b/test/unit-test/CMakeLists.txt @@ -2,7 +2,7 @@ include(${MODULE_ROOT_DIR}/backoffAlgorithmFilePaths.cmake) project ("backoff algorithm unit test") -cmake_minimum_required (VERSION 3.2.0) +cmake_minimum_required (VERSION 3.5) # ==================== Define your project name (edit) ======================== set(project_name "backoff_algorithm")