Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WBToolbox: Explicitly enable dependency on ICUB, qpOASES and OsqpEigen #755

Merged
merged 1 commit into from
May 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion cmake/BuildWBToolbox.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ find_or_build_package(ICUB QUIET)
find_or_build_package(iDynTree QUIET)
find_or_build_package(qpOASES QUIET)
find_or_build_package(BlockFactory QUIET)
find_or_build_package(OsqpEigen QUIET)

ycm_ep_helper(WBToolbox TYPE GIT
STYLE GITHUB
Expand All @@ -18,10 +19,14 @@ ycm_ep_helper(WBToolbox TYPE GIT
COMPONENT dynamics
FOLDER src
CMAKE_ARGS -DWBT_USES_MATLAB:BOOL=${ROBOTOLOGY_USES_MATLAB}
-DWBT_USES_ICUB:BOOL=ON
-DWBT_USES_QPOASES:BOOL=ON
-DWBT_USES_OSQPEIGEN:BOOL=ON
DEPENDS YARP
ICUB
iDynTree
qpOASES
BlockFactory)
BlockFactory
OsqpEigen)

set(WBToolbox_CONDA_DEPENDENCIES eigen)