Skip to content

Commit

Permalink
Add dependency of walking-controllers on bipedal-locomotion-framework (
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored and Nicogene committed Feb 14, 2022
1 parent ebf4628 commit bb92356
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The format of this document is based on [Keep a Changelog](https://keepachangelo
### Changed
- On Windows the option `ROBOTOLOGY_USES_ESDCAN` is now enabled when generating conda packages (https://github.com/robotology/robotology-superbuild/pull/935).
- For the YARP package, the compilation of the `usbCamera` device on Linux is enabled even if `ROBOTOLOGY_ENABLE_ICUB_HEAD` is `OFF` (https://github.com/robotology/robotology-superbuild/pull/989).
- `walking-controllers` now depends on `bipedal-locomotion-framework`, so it is now compiled if `ROBOTOLOGY_ENABLE_DYNAMICS_FULL_DEPS` option is enabled (https://github.com/robotology/robotology-superbuild/pull/1013).

## [2021.11.1] - 2022-01-05

Expand Down
2 changes: 2 additions & 0 deletions cmake/Buildwalking-controllers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ find_or_build_package(UnicyclePlanner QUIET)
find_or_build_package(OsqpEigen QUIET)
find_or_build_package(qpOASES QUIET)
find_or_build_package(ICUBcontrib QUIET)
find_or_build_package(bipedal-locomotion-framework QUIET)

set(walking-controllers_DEPENDS "")
list(APPEND walking-controllers_DEPENDS YARP)
Expand All @@ -21,6 +22,7 @@ list(APPEND walking-controllers_DEPENDS UnicyclePlanner)
list(APPEND walking-controllers_DEPENDS OsqpEigen)
list(APPEND walking-controllers_DEPENDS qpOASES)
list(APPEND walking-controllers_DEPENDS ICUBcontrib)
list(APPEND walking-controllers_DEPENDS bipedal-locomotion-framework)

ycm_ep_helper(walking-controllers TYPE GIT
STYLE GITHUB
Expand Down
2 changes: 1 addition & 1 deletion cmake/RobotologySuperbuildLogic.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ if(ROBOTOLOGY_ENABLE_DYNAMICS)
find_or_build_package(osqp)
find_or_build_package(OsqpEigen)
find_or_build_package(UnicyclePlanner)
find_or_build_package(walking-controllers)
find_or_build_package(whole-body-estimators)
find_or_build_package(whole-body-controllers)
find_or_build_package(matioCpp)
Expand All @@ -62,6 +61,7 @@ if(ROBOTOLOGY_ENABLE_DYNAMICS)
endif()
if(ROBOTOLOGY_ENABLE_DYNAMICS_FULL_DEPS)
find_or_build_package(bipedal-locomotion-framework)
find_or_build_package(walking-controllers)
if(ROBOTOLOGY_USES_MATLAB)
find_or_build_package(casadi-matlab-bindings)
endif()
Expand Down

0 comments on commit bb92356

Please sign in to comment.