mirror of https://github.com/axmolengine/axmol.git
9 lines
231 B
C
9 lines
231 B
C
|
// By halx99, This file is only workaround for build ios combined archs
|
||
|
#if defined(__APPLE__)
|
||
|
#if defined(__arm__)
|
||
|
#include "arm/jsimd.c"
|
||
|
#elif defined(__arm64__)
|
||
|
#include "arm64/jsimd.c"
|
||
|
#endif
|
||
|
#endif
|