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

Add OsqpEigen as explicit dependency of bipedal-locomotion-framework #952

Merged
merged 1 commit into from
Dec 13, 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
6 changes: 5 additions & 1 deletion cmake/Buildbipedal-locomotion-framework.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,19 @@ include(YCMEPHelper)
include(FindOrBuildPackage)

find_or_build_package(YARP QUIET)
find_or_build_package(OsqpEigen QUIET)
find_or_build_package(iDynTree QUIET)
find_or_build_package(matioCpp QUIET)
find_or_build_package(UnicyclePlanner QUIET)

set(bipedal-locomotion-framework_DEPENDS "")
list(APPEND bipedal-locomotion-framework_DEPENDS YARP)
list(APPEND bipedal-locomotion-framework_DEPENDS OsqpEigen)
list(APPEND bipedal-locomotion-framework_DEPENDS iDynTree)
list(APPEND bipedal-locomotion-framework_DEPENDS matioCpp)
list(APPEND bipedal-locomotion-framework_DEPENDS UnicyclePlanner)


set(bipedal-locomotion-framework_USES_CppAD OFF)

if (ROBOTOLOGY_ENABLE_DYNAMICS_FULL_DEPS)
Expand Down Expand Up @@ -49,7 +52,8 @@ ycm_ep_helper(bipedal-locomotion-framework TYPE GIT
COMPONENT dynamics
FOLDER src
CMAKE_ARGS -DBUILD_TESTING:BOOL=OFF
-DFRAMEWORK_USE_YARP:BOOL=ON
-DFRAMEWORK_USE_YARP:BOOL=O
-DFRAMEWORK_USE_OsqpEigen:BOOL=ON
-DFRAMEWORK_USE_matioCpp:BOOL=ON
-DFRAMEWORK_USE_manif:BOOL=${ROBOTOLOGY_ENABLE_DYNAMICS_FULL_DEPS}
-DFRAMEWORK_USE_Qhull:BOOL=${ROBOTOLOGY_ENABLE_DYNAMICS_FULL_DEPS}
Expand Down