Skip to content
Snippets Groups Projects
Commit a86f9612 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Fix dependency of RobotAPINjointControllers to MMM

parent f7c5f754
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,8 @@ armarx_set_target("Library: ${LIB_NAME}")
find_package(Eigen3 QUIET)
find_package(Simox ${ArmarX_Simox_VERSION} QUIET)
find_package(DMP QUIET)
find_package(MMMCore QUIET)
find_package(MMMToolsQUIET)
armarx_build_if(Eigen3_FOUND "Eigen3 not available")
armarx_build_if(Simox_FOUND "Simox-VirtualRobot not available")
......@@ -30,7 +32,7 @@ set(LIB_HEADERS
)
if (DMP_FOUND)
if (DMP_FOUND AND MMMCore_FOUND AND MMMTools_FOUND)
message(STATUS "DMP libraries is ${DMP_LIBRARIES}")
include_directories(${DMP_INCLUDE_DIRS})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment