mirror of https://github.com/axmolengine/axmol.git
Added CC_STATIC support for 3d, all these commits will be squashed and renamed, structured and signed at the end
Signed-off-by: martell <martellmalone@gmail.com>
This commit is contained in:
parent
1a7ecbe427
commit
d420ae39e2
|
@ -6,12 +6,15 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CC_STATIC)
|
||||||
|
#define CC_3D_DLL
|
||||||
|
#else
|
||||||
#if defined(_USE3DDLL)
|
#if defined(_USE3DDLL)
|
||||||
#define CC_3D_DLL __declspec(dllexport)
|
#define CC_3D_DLL __declspec(dllexport)
|
||||||
#else /* use a DLL library */
|
#else /* use a DLL library */
|
||||||
#define CC_3D_DLL __declspec(dllimport)
|
#define CC_3D_DLL __declspec(dllimport)
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Define NULL pointer value */
|
/* Define NULL pointer value */
|
||||||
#ifndef NULL
|
#ifndef NULL
|
||||||
|
|
Loading…
Reference in New Issue