![]() | 1 | initial version |
Gazebo cmake system is looking for ogre via pkg-config. You could try something like:
export PKG_CONFIG_PATH=/home/foo/libogre-1.8/pkgconfig_directory:$PKG_CONFIG_PATH
or even pass it during cmake configuration phase:
cmake .. -DPKG_CONFIG_PATH=/home/foo/libogre-1.8/pkgconfig_directory:$PKG_CONFIG_PATH
Untested, just an idea.