mirror of https://github.com/AxioDL/tinyxml2.git
Merge pull request #90 from martinsh-shaiters/mingw
Adds conditional include of io.h when compiling with MinGW
This commit is contained in:
commit
dfc494ffc5
|
@ -14,6 +14,8 @@
|
|||
#include <windows.h>
|
||||
_CrtMemState startMemState;
|
||||
_CrtMemState endMemState;
|
||||
#elif defined(MINGW32) || defined(__MINGW32__)
|
||||
#include <io.h> // mkdir
|
||||
#else
|
||||
#include <sys/stat.h> // mkdir
|
||||
#endif
|
||||
|
@ -156,7 +158,7 @@ int main( int /*argc*/, const char ** /*argv*/ )
|
|||
_CrtMemCheckpoint( &startMemState );
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#if defined(_MSC_VER) || defined(MINGW32) || defined(__MINGW32__)
|
||||
_mkdir( "resources/out/" );
|
||||
#else
|
||||
mkdir( "resources/out/", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
|
||||
|
|
Loading…
Reference in New Issue