Search found 4 matches
- Thu May 01, 2014 17:59
- Forum: Help
- Topic: Building CEGUI
- Replies: 7
- Views: 6776
Re: Building CEGUI
No, it should stay and if it is in effect it is supposed to prevent the windows-caused error that you are getting there, which is a result of a conflict between std and windows headers. Windows reeimplements min/max functions. I see you use Visual Studio 2012. I haven't tested it but others did. I ...
- Thu May 01, 2014 17:50
- Forum: Help
- Topic: Building CEGUI
- Replies: 7
- Views: 6776
Re: Building CEGUI
OK i did some digging and it looks like the problem I had is discussed here: http://cegui.org.uk/forum/viewtopic.php?f=3&t=6663 I added // min/max is defined in algroithm in VS2013+ #if defined(_MSC_VER) && (_MSC_VER >= 1800) # include <algorithm> #endif to Base.h and now the CEGUI proje...
- Thu May 01, 2014 16:59
- Forum: Help
- Topic: Building CEGUI
- Replies: 7
- Views: 6776
Re: Building CEGUI
Yes, NOMINMAX is defined in the preprocessor. This definition should be removed?
- Tue Apr 29, 2014 00:22
- Forum: Help
- Topic: Building CEGUI
- Replies: 7
- Views: 6776
Building CEGUI
I am having trouble building CEGUI 0.8.3. I am following the steps instructed here https://www.youtube.com/watch?v=VaD-MQJLtWk . Dependencies CMake log (generator is Visual Studio 12 Win64): The C compiler identification is MSVC 18.0.21005.1 The CXX compiler identification is MSVC 18.0.21005.1 Check...