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 compiling for macOS, some tutorials produce a compile error. To take a specific example, try to build Tutorial_Hlms01_Customization. You get a compile error saying that Ogre::macBundlePath is unknown. This can be fixed by adding
#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
# include "OSX/macUtils.h"
#endif
to Tutorial_Hlms01_Customization.h after the other #includes. The same issue exists in the other Tutorial_Hlms samples, but I haven't tried all the samples.
The text was updated successfully, but these errors were encountered:
System Information
Detailed description
When compiling for macOS, some tutorials produce a compile error. To take a specific example, try to build
Tutorial_Hlms01_Customization
. You get a compile error saying thatOgre::macBundlePath
is unknown. This can be fixed by addingto Tutorial_Hlms01_Customization.h after the other #includes. The same issue exists in the other Tutorial_Hlms samples, but I haven't tried all the samples.
The text was updated successfully, but these errors were encountered: