ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

It seems that the -llapack and -lblas linking options are not implicit. In addition to what you have, you may want to find and link against those imported targets too:

find_package(BLAS REQUIRED)
find_package(LAPACK REQUIRED)
target_link_libraries(${target} PRIVATE BLAS::BLAS LAPACK::LAPACK)