1
0
mirror of https://github.com/godotengine/godot synced 2024-07-08 18:05:48 +00:00
godot/modules/raycast/config.py
2024-04-30 16:26:42 +03:00

14 lines
381 B
Python

def can_build(env, platform):
# Supported architectures and platforms depend on the Embree library.
if env["arch"] == "arm64" and platform == "windows":
return False
if env["arch"] in ["x86_64", "arm64", "wasm32"]:
return True
if env["arch"] == "x86_32" and platform == "windows":
return True
return False
def configure(env):
pass