mirror of
https://github.com/godotengine/godot.git
synced 2024-12-21 10:25:24 +08:00
13 lines
253 B
Python
13 lines
253 B
Python
|
def can_build(env, platform):
|
||
|
if platform == "android":
|
||
|
return env["android_arch"] in ["arm64v8", "x86", "x86_64"]
|
||
|
|
||
|
if platform == "javascript":
|
||
|
return False # No SIMD support yet
|
||
|
|
||
|
return True
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|