You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I try to build this repository,there is an error like this:
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target "octomap".
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target
"octomath".
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target "octomap".
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target
"octomath".
These error happens in the package tesserract_geometry and tesseract_scene_graph.
It seems like the path about octomap and octomath is not correct.when I add these in CMakeLists.txt,it build correctly:
when I try to build this repository,there is an error like this:
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target "octomap".
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target
"octomath".
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target "octomap".
CMake Error in CMakeLists.txt:
IMPORTED_LOCATION or IMPORTED_IMPLIB not set for imported target
"octomath".
These error happens in the package tesserract_geometry and tesseract_scene_graph.
It seems like the path about octomap and octomath is not correct.when I add these in CMakeLists.txt,it build correctly:
set(OCTOMAP_LIBRARIES "/home/myhost/tesseract_ws/install/octomap-distribution/lib/liboctomap.so")
set(OCTOMATH_LIBRARIES "/home/myhost/tesseract_ws/install/octomap-distribution/lib/liboctomath.so")
set_target_properties(octomap PROPERTIES IMPORTED_LOCATION "${OCTOMAP_LIBRARIES}")
set_target_properties(octomath PROPERTIES IMPORTED_LOCATION "${OCTOMATH_LIBRARIES}")
it seems like you put to path both in OCTOMAP_LIBRARIES.
The text was updated successfully, but these errors were encountered: