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,13 +6,16 @@
|
|||
#include <string.h>
|
||||
#endif
|
||||
|
||||
#if defined(_USE3DDLL)
|
||||
#define CC_3D_DLL __declspec(dllexport)
|
||||
#else /* use a DLL library */
|
||||
#define CC_3D_DLL __declspec(dllimport)
|
||||
#if defined(CC_STATIC)
|
||||
#define CC_3D_DLL
|
||||
#else
|
||||
#if defined(_USE3DDLL)
|
||||
#define CC_3D_DLL __declspec(dllexport)
|
||||
#else /* use a DLL library */
|
||||
#define CC_3D_DLL __declspec(dllimport)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
/* Define NULL pointer value */
|
||||
#ifndef NULL
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in New Issue