From 2d2b6231fbbdb122e3a8a25e7aaa80917c202c6d Mon Sep 17 00:00:00 2001 From: Martin Ling Date: Fri, 19 Sep 2025 00:50:16 +0100 Subject: [PATCH] Bump CMake minimum version to 3.10. --- firmware/CMakeLists.txt | 2 +- firmware/blinky/CMakeLists.txt | 2 +- firmware/hackrf_usb/CMakeLists.txt | 2 +- host/CMakeLists.txt | 2 +- host/hackrf-tools/CMakeLists.txt | 2 +- host/libhackrf/CMakeLists.txt | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/firmware/CMakeLists.txt b/firmware/CMakeLists.txt index 337353fa..10c2d09d 100644 --- a/firmware/CMakeLists.txt +++ b/firmware/CMakeLists.txt @@ -20,7 +20,7 @@ # Top directory CMake project for HackRF firmware -cmake_minimum_required(VERSION 3.5.0) +cmake_minimum_required(VERSION 3.10.0) set(CMAKE_TOOLCHAIN_FILE toolchain-arm-cortex-m.cmake) project (hackrf_firmware_all C) diff --git a/firmware/blinky/CMakeLists.txt b/firmware/blinky/CMakeLists.txt index b44ea591..1ffd3b45 100644 --- a/firmware/blinky/CMakeLists.txt +++ b/firmware/blinky/CMakeLists.txt @@ -19,7 +19,7 @@ # Boston, MA 02110-1301, USA. # -cmake_minimum_required(VERSION 3.5.0) +cmake_minimum_required(VERSION 3.10.0) set(CMAKE_TOOLCHAIN_FILE ../toolchain-arm-cortex-m.cmake) project(blinky C) diff --git a/firmware/hackrf_usb/CMakeLists.txt b/firmware/hackrf_usb/CMakeLists.txt index 8df34a7c..311c18ff 100644 --- a/firmware/hackrf_usb/CMakeLists.txt +++ b/firmware/hackrf_usb/CMakeLists.txt @@ -18,7 +18,7 @@ # Boston, MA 02110-1301, USA. # -cmake_minimum_required(VERSION 3.5.0) +cmake_minimum_required(VERSION 3.10.0) set(CMAKE_TOOLCHAIN_FILE ../toolchain-arm-cortex-m.cmake) project(hackrf_usb C) diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 45c0f8b6..2efb17c5 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -1,6 +1,6 @@ #top dir cmake project for libhackrf + tools -cmake_minimum_required(VERSION 3.5.0) +cmake_minimum_required(VERSION 3.10.0) project (HackRF C) set(CMAKE_C_FLAGS "$ENV{CFLAGS}" CACHE STRING "C Flags") diff --git a/host/hackrf-tools/CMakeLists.txt b/host/hackrf-tools/CMakeLists.txt index 1b6d6ebf..8e472e83 100644 --- a/host/hackrf-tools/CMakeLists.txt +++ b/host/hackrf-tools/CMakeLists.txt @@ -21,7 +21,7 @@ # Based heavily upon the libftdi cmake setup. -cmake_minimum_required(VERSION 3.5.0) +cmake_minimum_required(VERSION 3.10.0) project(hackrf-tools C) set(PACKAGE hackrf-tools) include(${PROJECT_SOURCE_DIR}/../cmake/set_release.cmake) diff --git a/host/libhackrf/CMakeLists.txt b/host/libhackrf/CMakeLists.txt index e56e24aa..f75c2397 100644 --- a/host/libhackrf/CMakeLists.txt +++ b/host/libhackrf/CMakeLists.txt @@ -21,7 +21,7 @@ # Based heavily upon the libftdi cmake setup. -cmake_minimum_required(VERSION 3.5.0) +cmake_minimum_required(VERSION 3.10.0) project(libhackrf C) set(MAJOR_VERSION 0) set(MINOR_VERSION 9)