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
{{ message }}
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
CMake VERSION_GREATER_EQUAL macro is not implemented until CMake 3.7, so this line cause a problem (default CMake version on Ubuntu 16.04 is 3.5.1).
Change minimum required CMake version to 3.7, or change the condition to "${GAZEBO_VERSION}" VERSION_GREATER "8" OR "${GAZEBO_VERSION}" VERSION_EQUAL "8" should fix the issue.
The text was updated successfully, but these errors were encountered:
CMake VERSION_GREATER_EQUAL macro is not implemented until CMake 3.7, so this line cause a problem (default CMake version on Ubuntu 16.04 is 3.5.1).
Change minimum required CMake version to 3.7, or change the condition to
"${GAZEBO_VERSION}" VERSION_GREATER "8" OR "${GAZEBO_VERSION}" VERSION_EQUAL "8"
should fix the issue.The text was updated successfully, but these errors were encountered: