godot/modules/lightmapper_cpu/config.py
JFonS 1cfed0d583
Switch to embree-aarch64
(cherry picked from commit 73e2ccd603)
2021-05-05 15:11:13 +02:00

20 lines
514 B
Python

def can_build(env, platform):
if not env["tools"] or not env["module_raycast_enabled"]:
return False
# Depends on raycast module (embree), but we can't have access to the result of
# `can_build()` for that module, so we need to duplicate that code as a short-term
# solution.
if platform == "android":
return env["android_arch"] in ["arm64v8", "x86", "x86_64"]
if platform in ["javascript", "server"]:
return False
return True
def configure(env):
pass