From 485099e7374939eeed52e819550460b5cde3002c Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Fri, 10 Nov 2023 09:25:10 +0100 Subject: [PATCH 1/2] Add missing include(FetchContent) in bindings/python/RobotInterface/CMakeLists.txt --- bindings/python/RobotInterface/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/bindings/python/RobotInterface/CMakeLists.txt b/bindings/python/RobotInterface/CMakeLists.txt index aa33fc9e27..31512841b7 100644 --- a/bindings/python/RobotInterface/CMakeLists.txt +++ b/bindings/python/RobotInterface/CMakeLists.txt @@ -27,6 +27,7 @@ if(TARGET BipedalLocomotion::RobotInterface # https://github.com/pybind/pybind11/commit/74a767d42921001fc4569ecee3b8726383c42ad4 # https://github.com/pybind/pybind11/pull/2864 if (${pybind11_VERSION} VERSION_GREATER_EQUAL "2.7.0") + include(FetchContent) FetchContent_Declare( cvnp GIT_REPOSITORY https://github.com/pthom/cvnp From f2932128c4e02ef22c6bb12cd450953d2ce171e5 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Fri, 10 Nov 2023 09:28:45 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e00ea71bb4..69bd094dfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ All notable changes to this project are documented in this file. ### Fixed - Fix timestamp logging for the cameras (https://github.com/ami-iit/bipedal-locomotion-framework/pull/748) +- Fix missing include(FetchContent) in Python bindings CMake code (https://github.com/ami-iit/bipedal-locomotion-framework/pull/757) ## [0.15.0] - 2023-09-05 ### Added