From 3c109634d8d32954f039378e3a31b2ba1ec3cc89 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Sun, 22 Oct 2023 17:44:19 +0200 Subject: [PATCH] Bump policy_max argument of cmake_minimum_required to 3.16 This is to ensure that https://cmake.org/cmake/help/latest/policy/CMP0094.html#policy:CMP0094 is set to `NEW`. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 730cdd9..6f9e552 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ -# Copyright: (C) 2022 Fondazione Istituto Italiano di Tecnologia +# Copyright: (C) Fondazione Istituto Italiano di Tecnologia # Authors: Silvio Traversaro # CopyPolicy: Released under the terms of the LGPLv2.1 or later, see LGPL.TXT -cmake_minimum_required(VERSION 3.8) +cmake_minimum_required(VERSION 3.8...3.16) project(icub-models VERSION 2.3.0)