Search found 2 matches
- Thu Apr 21, 2005 15:36
- Forum: Offtopic Discussion
- Topic: How to use Mingw
- Replies: 0
- Views: 3993
How to use Mingw
First off, I got CVS head to compile (mostly) without errors. This is using tinyxml and I didn't bother with the current renderers as I'm making my own for Crystalspace. 1. run ./booststrap to generate the configure files. (it'd be nice if this was documented somewhere, maybe in the readme..) 2. Now...
- Wed Apr 20, 2005 17:24
- Forum: Offtopic Discussion
- Topic: MinGW support
- Replies: 2
- Views: 3034
Re: MinGW support
#if defined( __WIN32__ ) || defined( _WIN32 ) # ifdef CEGUIBASE_EXPORTS # ifdef __GNUWIN32__ # define CEGUIBASE_API # else # define CEGUIBASE_API __declspec(dllexport) # endif # else # define CEGUIBASE_API __declspec(dllimport) # endif #else # define CEGUIBASE_API #endif This was my change to get i...