We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The PR #2864 , in particular https://github.com/osrf/gazebo/pull/2864/files#diff-0838b3a1790a01bd4c5b10e6789d5b7309df76869413ea9e166ee36815653b70R110, broke the calls to find_package(gazebo) on Windows. The error that you get as soon as you call find_package(gazebo) is:
find_package(gazebo)
CMake Error at C:/Users/STraversaro/Miniforge3/envs/robsup/Library/lib/cmake/gazebo/gazebo-config.cmake:146 (message): Library 'gazebo' in package GAZEBO is not installed properly Call Stack (most recent call first): cmake/BuildGazeboYARPPlugins.cmake:31 (find_package) build-conda3/install/share/YCM/modules/FindOrBuildPackage.cmake:215 (include) cmake/RobotologySuperbuildLogic.cmake:12 (find_or_build_package) CMakeLists.txt:45 (include)
This is because the line in https://github.com/osrf/gazebo/blob/72f40624d4ef33166c8cb864390d6a1769044b14/CMakeLists.txt#L438 should be modified in Windows to read libgazebo instead of gazebo .
libgazebo
gazebo
The text was updated successfully, but these errors were encountered:
Fix find_package(gazebo) on Windows
d05c6a0
Fix gazebosim#2905
Fix find_package(gazebo) on Windows (#2906)
0d16429
Fix #2905
Successfully merging a pull request may close this issue.
The PR #2864 , in particular https://github.com/osrf/gazebo/pull/2864/files#diff-0838b3a1790a01bd4c5b10e6789d5b7309df76869413ea9e166ee36815653b70R110, broke the calls to
find_package(gazebo)
on Windows. The error that you get as soon as you callfind_package(gazebo)
is:This is because the line in https://github.com/osrf/gazebo/blob/72f40624d4ef33166c8cb864390d6a1769044b14/CMakeLists.txt#L438 should be modified in Windows to read
libgazebo
instead ofgazebo
.The text was updated successfully, but these errors were encountered: