From 45bdf204813b2ba321ecbb3bf0aa0c03a093a0cd Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Wed, 30 Apr 2025 11:25:27 -0400 Subject: [PATCH] lockstep_scheduler: bump cmake minimum to 3.5 --- .../posix/src/px4/common/lockstep_scheduler/CMakeLists.txt | 2 +- .../posix/src/px4/common/lockstep_scheduler/test/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/posix/src/px4/common/lockstep_scheduler/CMakeLists.txt b/platforms/posix/src/px4/common/lockstep_scheduler/CMakeLists.txt index 15c40a2e99..7b4798c600 100644 --- a/platforms/posix/src/px4/common/lockstep_scheduler/CMakeLists.txt +++ b/platforms/posix/src/px4/common/lockstep_scheduler/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.5) # We want to test the lockstep schedule even if it is not used otherwise. px4_add_library(lockstep_scheduler diff --git a/platforms/posix/src/px4/common/lockstep_scheduler/test/CMakeLists.txt b/platforms/posix/src/px4/common/lockstep_scheduler/test/CMakeLists.txt index ea779efc9e..4b30be206b 100644 --- a/platforms/posix/src/px4/common/lockstep_scheduler/test/CMakeLists.txt +++ b/platforms/posix/src/px4/common/lockstep_scheduler/test/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.5) add_executable(lockstep_scheduler_test src/lockstep_scheduler_test.cpp