From 63fbb18b9381dc7053cedad9cf24d09353600142 Mon Sep 17 00:00:00 2001 From: gullradriel Date: Sat, 7 Dec 2024 14:51:08 +0100 Subject: [PATCH] updated minimum required cmake version to 3.16 --- 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 c458b7f1c..1ffcc994e 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.1.3) +cmake_minimum_required(VERSION 3.16) 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 dfecc3204..e5bbc75b4 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.1.3) +cmake_minimum_required(VERSION 3.16) 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 d1cc8bbd2..0763a1067 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.1.3) +cmake_minimum_required(VERSION 3.16) set(CMAKE_TOOLCHAIN_FILE ../toolchain-arm-cortex-m.cmake) project(hackrf_usb C) diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 4eaaf3141..021a97c73 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -1,6 +1,6 @@ #top dir cmake project for libhackrf + tools -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.16) 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 efb5d9368..f3d716876 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 2.8.12) +cmake_minimum_required(VERSION 3.16) 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 455470c18..9f6192619 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 2.8.12) +cmake_minimum_required(VERSION 3.16) project(libhackrf C) set(MAJOR_VERSION 0) set(MINOR_VERSION 9)