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
The possibility of fixing this are (as far as I can think):
either to patch the gazebo-config.cmake contained in the bottle to contain the line find_package(DART ${GAZEBO_DART_MIN_REQUIRED_VERSION} REQUIRED CONFIG)
fix the problem in Gazebo upstream, and do a new release from which to generate a bottle.
The text was updated successfully, but these errors were encountered:
Some homebrew users of the https://github.com/robotology/robotology-superbuild on macOS (@DanielePucci) are reporting the impossibility of compiling a project that calls
find_package(gazebo REQUIRED)
when using the latest gazebo9 installed by homebrew.I investigated a bit, and the problem is that:
find_package(DART ${GAZEBO_DART_MIN_REQUIRED_VERSION} REQUIRED)
contained in thegazebo-config.cmake
file does not work on macOs due to the conflict with theFindDart.cmake
module distributed with CMake (see Use CONFIG mode to find DART in examples and tutorials dartsim/dart#889 for a related Dart PR).The possibility of fixing this are (as far as I can think):
gazebo-config.cmake
contained in the bottle to contain the linefind_package(DART ${GAZEBO_DART_MIN_REQUIRED_VERSION} REQUIRED CONFIG)
The text was updated successfully, but these errors were encountered: