Thanks for help
I'm looking forward for 1.8.4 and hope that it will have c++11 support.
Search found 10 matches
- Mon Mar 14, 2016 2:09 pm
- Forum: Beginners Help
- Topic: I can't build Irrlicht 1.8.3 :(
- Replies: 7
- Views: 991
- Mon Mar 14, 2016 1:49 pm
- Forum: Beginners Help
- Topic: I can't build Irrlicht 1.8.3 :(
- Replies: 7
- Views: 991
Re: I can't build Irrlicht 1.8.3 :(
There is an assumprion, why it is. Which c++ standart whould be using in irrlicht building ? I used c++11 (compiler flag: -std=c++11) and got that errors, now I disabled c++11 and building was correct o_O... Build Target - All.
- Mon Mar 14, 2016 1:26 pm
- Forum: Beginners Help
- Topic: I can't build Irrlicht 1.8.3 :(
- Replies: 7
- Views: 991
- Mon Mar 14, 2016 12:35 pm
- Forum: Beginners Help
- Topic: I can't build Irrlicht 1.8.3 :(
- Replies: 7
- Views: 991
I can't build Irrlicht 1.8.3 :(
Building of Irrlicht 1.8.3 in Code::Blocks with MinGW compiler, 5 errors: \irrlicht-1.8.3\source\Irrlicht\CFileSystem.cpp|515|error: '_MAX_PATH' was not declared in this scope| \irrlicht-1.8.3\source\Irrlicht\CFileSystem.cpp|521|error: 'tmp' was not declared in this scope| \irrlicht-1.8.3\source\I...
- Mon Aug 17, 2015 6:55 am
- Forum: Beginners Help
- Topic: MFC&IrrLicht
- Replies: 10
- Views: 1323
Re: MFC&IrrLicht
Problems, which we met, was very hard and we decided not use MFC. Now the development will use Windows Forms Application (this is special module for Visual Studio). Our project correctly ported in this project type. There was problem with event receiver (IrrLicht receiver didn't see events while dev...
- Mon Aug 10, 2015 2:36 pm
- Forum: Beginners Help
- Topic: MFC&IrrLicht
- Replies: 10
- Views: 1323
Re: MFC&IrrLicht
You can get the console output by starting your .exe from a console. You can use DosBox if you have no good one installed. I personally prefer using the shells from MinGW or Cygwin (both provide unix-shells which run on Windows). I tried start application from the console. Application run, but ther...
- Mon Aug 10, 2015 11:46 am
- Forum: Beginners Help
- Topic: MFC&IrrLicht
- Replies: 10
- Views: 1323
Re: MFC&IrrLicht
I failed in creating of console window, in MFC project there is many errors (63) if I use the following code: AllocConsole(); HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE); int hCrt = _open_osfhandle((long)handle_out, _O_TEXT); FILE* hf_out = _fdopen(hCrt, "w"); setvbuf(hf_out, NUL...
- Mon Aug 10, 2015 11:39 am
- Forum: Beginners Help
- Topic: MFC&IrrLicht
- Replies: 10
- Views: 1323
Re: MFC&IrrLicht
There is no console, because project has no type "console project", its type is "MFC project". But I can create console and resend output into it... Now I will try this.
- Mon Aug 10, 2015 7:19 am
- Forum: Beginners Help
- Topic: MFC&IrrLicht
- Replies: 10
- Views: 1323
Re: MFC&IrrLicht
Not really sure about either of those. But Irrlicht usually compiles so my best guess at your first error is that it's called by something you do before including the irrlicht header. Try including that as first line - do you still get the error then? I moved including of irrlicht.h at first line, ...
- Fri Aug 07, 2015 11:37 am
- Forum: Beginners Help
- Topic: MFC&IrrLicht
- Replies: 10
- Views: 1323
MFC&IrrLicht
I need to create an MFC application using IrrLicht. There is method to send rendering into the window using its HWND handle. I tried to use this method with MFC, but some problems have arisen. 1) Compilation of MFC application with included irrlicht.h returns an error: error C2059: Syntax error: ( ...