Skip to content
Snippets Groups Projects
Commit 8b29c86d authored by Mirko Wächter's avatar Mirko Wächter
Browse files

added libraries to DMPComponent

parent 1fb03af6
No related branches found
No related tags found
No related merge requests found
armarx_component_set_name("DMPComponent")
#find_package(MyLib QUIET)
#armarx_build_if(MyLib_FOUND "MyLib not available")
#
find_package(DMP QUIET)
armarx_build_if(DMP_FOUND "MyLib not available")
find_package(MMMCore QUIET)
armarx_build_if(MMMCore_FOUND "MMMCore not available")
find_package(Eigen3 QUIET)
armarx_build_if(Eigen3_FOUND "Eigen3 not available")
# all include_directories must be guarded by if(Xyz_FOUND)
# for multiple libraries write: if(X_FOUND AND Y_FOUND)....
#if(MyLib_FOUND)
# include_directories(${MyLib_INCLUDE_DIRS})
#endif()
if(DMP_FOUND AND MMMCore_FOUND AND Eigen3_FOUND)
include_directories(${Eigen3_INCLUDE_DIR} ${DMP_INCLUDE_DIRS} ${MMMCORE_INCLUDE_DIRS})
endif()
set(COMPONENT_LIBS ArmarXInterfaces ArmarXCore)
set(COMPONENT_LIBS ArmarXInterfaces ArmarXCore ${DMP_LIBRARIES} ${MMMCORE_LIBRARIES})
set(SOURCES
./DMPComponent.cpp
......
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