]> git.lizzy.rs Git - irrlicht.git/blob - include/IrrCompileConfig.h
Drop IrrCompileConfig (#163)
[irrlicht.git] / include / IrrCompileConfig.h
1 // Copyright (C) 2002-2012 Nikolaus Gebhardt\r
2 // This file is part of the "Irrlicht Engine".\r
3 // For conditions of distribution and use, see copyright notice in irrlicht.h\r
4 \r
5 #ifndef __IRR_COMPILE_CONFIG_H_INCLUDED__\r
6 #define __IRR_COMPILE_CONFIG_H_INCLUDED__\r
7 \r
8 //! Identifies the IrrlichtMt fork customized for the Minetest engine\r
9 #define IRRLICHT_VERSION_MT_REVISION 10\r
10 #define IRRLICHT_VERSION_MT "mt10"\r
11 \r
12 //! Irrlicht SDK Version\r
13 #define IRRLICHT_VERSION_MAJOR 1\r
14 #define IRRLICHT_VERSION_MINOR 9\r
15 #define IRRLICHT_VERSION_REVISION 0\r
16 // This flag will be defined only in SVN, the official release code will have\r
17 // it undefined\r
18 #define IRRLICHT_VERSION_SVN alpha\r
19 #define IRRLICHT_SDK_VERSION "1.9.0" IRRLICHT_VERSION_MT\r
20 \r
21 #include <stdio.h> // TODO: Although included elsewhere this is required at least for mingw\r
22 \r
23 #ifdef _WIN32\r
24 #define IRRCALLCONV __stdcall\r
25 #else\r
26 #define IRRCALLCONV\r
27 #endif\r
28 \r
29 #ifndef IRRLICHT_API\r
30 #define IRRLICHT_API\r
31 #endif\r
32 \r
33 #endif // __IRR_COMPILE_CONFIG_H_INCLUDED__\r