Skip to content
Snippets Groups Projects
Commit 521a938f authored by Joseph Mirabel's avatar Joseph Mirabel
Browse files

[CMake] Add missing link command.

parent 1d57ca84
No related branches found
No related tags found
No related merge requests found
...@@ -13,8 +13,9 @@ macro(add_fcl_test test_name) ...@@ -13,8 +13,9 @@ macro(add_fcl_test test_name)
target_link_libraries(${test_name} target_link_libraries(${test_name}
hpp-fcl hpp-fcl
${Boost_LIBRARIES} ${Boost_LIBRARIES}
utility
) )
target_link_libraries(${test_name} utility) PKG_CONFIG_USE_DEPENDENCY(${test_name} assimp)
add_test(${test_name} ${EXECUTABLE_OUTPUT_PATH}/${test_name}) add_test(${test_name} ${EXECUTABLE_OUTPUT_PATH}/${test_name})
endmacro(add_fcl_test) endmacro(add_fcl_test)
......
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