Search found 3 matches
- Wed Nov 06, 2013 23:05
- Forum: Help
- Topic: Building CEGUI 0.8.2 with Ogre 1.9RC2 on Visual2013 x64
- Replies: 2
- Views: 2764
Re: Building CEGUI 0.8.2 with Ogre 1.9RC2 on Visual2013 x64
So, I've just duplicated and renamed libbost_thread / system /date_time /chrono and atomic to VC110 and the build was successful.
- Tue Nov 05, 2013 21:50
- Forum: Help
- Topic: Building CEGUI 0.8.2 with Ogre 1.9RC2 on Visual2013 x64
- Replies: 2
- Views: 2764
Building CEGUI 0.8.2 with Ogre 1.9RC2 on Visual2013 x64
Hello, I've tried to build CEGUI 0.8.2 with an ogre 1.9 x64 for VS2012 but it failed. So I've rebuild Ogre from repository with VS2013 successfully with Boost 1.53 VC120 and I've reconfigured Cmake with my new build by erasing the cache But when VS2013 link CEGUIOgreRenderer to his dependencies it s...
- Tue Nov 05, 2013 21:39
- Forum: Help
- Topic: CEGUI 0.8.2 w/ Ogre 1.9 compilation problems OS X
- Replies: 8
- Views: 13726
Re: CEGUI 0.8.2 w/ Ogre 1.9 compilation problems OS X
Go to the file cegui\include\CEGUI\RendererModules\Ogre\Renderer.h
and juste remplace on line 54
by
It fix the problem for me
and juste remplace on line 54
Code: Select all
class TexturePtr
by
Code: Select all
class Texture;
template<typename T> class SharedPtr;
typedef SharedPtr<Texture> TexturePtr;
It fix the problem for me
