From 3bc89f3a274963b221724fd6f3dc86e7d5fad71f Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Mon, 30 Sep 2024 09:25:03 +0200 Subject: [PATCH] Bump minimum required version of CMake to 3.16 --- CMakeLists.txt | 4 ++-- devices/Paexo/test-application/CMakeLists.txt | 2 +- interfaces/IWear/CMakeLists.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 64aad4c0..e19a266d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ -# SPDX-FileCopyrightText: Fondazione Istituto Italiano di Tecnologia (IIT) +e_mi# SPDX-FileCopyrightText: Fondazione Istituto Italiano di Tecnologia (IIT) # SPDX-License-Identifier: BSD-3-Clause -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.16) project(HumanDynamicsEstimation LANGUAGES CXX VERSION 4.0.2) diff --git a/devices/Paexo/test-application/CMakeLists.txt b/devices/Paexo/test-application/CMakeLists.txt index 7e3e4ac7..0986d027 100644 --- a/devices/Paexo/test-application/CMakeLists.txt +++ b/devices/Paexo/test-application/CMakeLists.txt @@ -2,7 +2,7 @@ # SPDX-License-Identifier: BSD-3-Clause -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.16) project(PaexoTestApplication) find_package(IWear REQUIRED) diff --git a/interfaces/IWear/CMakeLists.txt b/interfaces/IWear/CMakeLists.txt index 598feaa5..f0347c09 100644 --- a/interfaces/IWear/CMakeLists.txt +++ b/interfaces/IWear/CMakeLists.txt @@ -2,7 +2,7 @@ # SPDX-License-Identifier: BSD-3-Clause -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.16) project(IWear LANGUAGES CXX VERSION ${PROJECT_VERSION}) include(GNUInstallDirs)