When I try to install the GenericContainer element, I get the following error:
Make Error at src/GenericContainer/cmake_install.cmake:41 (file):
file INSTALL cannot find
"/home/gromualdi/robot-code/bipedal-locomotion-controllers_estimators/src/GenericContainer/include/BipedalLocomotionControllers/GenericVector/TemplateHelpers.h":
No such file or directory.
Call Stack (most recent call first):
src/cmake_install.cmake:42 (include)
cmake_install.cmake:69 (include)
The problem can be easily fixed with the following patch
diff --git a/src/GenericContainer/CMakeLists.txt b/src/GenericContainer/CMakeLists.txt
index 026ec88..e4203de 100644
--- a/src/GenericContainer/CMakeLists.txt
+++ b/src/GenericContainer/CMakeLists.txt
@@ -5,9 +5,7 @@
# set target name
add_bipedal_component(
NAME GenericContainer
- PUBLIC_HEADERS include/BipedalLocomotionControllers/GenericContainer/Vector.h include/BipedalLocomotionControllers/GenericVector/TemplateHelpers.h
+ PUBLIC_HEADERS include/BipedalLocomotionControllers/GenericContainer/Vector.h include/BipedalLocomotionControllers/GenericContainer/TemplateHelpers.h
PUBLIC_LINK_LIBRARIES ${iDynTree_LIBRARIES}
SUBDIRECTORIES tests
IS_INTERFACE ON)
When I try to install the
GenericContainer
element, I get the following error:The problem can be easily fixed with the following patch