Skip to content

Commit

Permalink
Enable the compilation of the time-varying dcm planner
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRomualdi committed Jul 6, 2020
1 parent 401983c commit 1bf3577
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Planners/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ if (FRAMEWORK_COMPILE_Planners)

add_bipedal_locomotion_library(
NAME Contact
PUBLIC_HEADERS ${H_PREFIX}/Contact.h ${H_PREFIX}/ContactList.h ${H_PREFIX}/ContactPhase.h ${H_PREFIX}/ContactPhaseList.h ${H_PREFIX}/ConvexHullHelper.h ${H_PREFIX}/DCMPlanner.h
SOURCES src/ContactList.cpp src/ContactPhase.cpp src/ContactPhaseList.cpp src/ConvexHullHelper.cpp src/DCMPlanner.cpp
PUBLIC_HEADERS ${H_PREFIX}/Contact.h ${H_PREFIX}/ContactList.h ${H_PREFIX}/ContactPhase.h ${H_PREFIX}/ContactPhaseList.h ${H_PREFIX}/ConvexHullHelper.h ${H_PREFIX}/DCMPlanner.h ${H_PREFIX}/TimeVaryingDCMPlanner.h
SOURCES src/ContactList.cpp src/ContactPhase.cpp src/ContactPhaseList.cpp src/ConvexHullHelper.cpp src/DCMPlanner.cpp src/TimeVaryingDCMPlanner.cpp
PUBLIC_LINK_LIBRARIES iDynTree::idyntree-core BipedalLocomotion::System BipedalLocomotion::ParametersHandler
PRIVATE_LINK_LIBRARIES Qhull::qhullcpp Qhull::qhullstatic_r
PRIVATE_LINK_LIBRARIES Qhull::qhullcpp Qhull::qhullstatic_r casadi
INSTALLATION_FOLDER Planners
SUBDIRECTORIES tests
DEPENDS_ON_EIGEN_PRIVATE)
Expand Down
5 changes: 5 additions & 0 deletions src/Planners/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ add_bipedal_test(
NAME ConvexHullHelper
SOURCES ConvexHullHelperTest.cpp
LINKS BipedalLocomotion::Contact)

add_bipedal_test(
NAME TimeVaryingDCMPlanner
SOURCES TimeVaryingDCMPlannerTest.cpp
LINKS BipedalLocomotion::Contact)

0 comments on commit 1bf3577

Please sign in to comment.