godot/modules/raycast/config.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
394 B
Python
Raw Normal View History

def can_build(env, platform):
2024-04-30 10:50:04 +00:00
# Supported architectures and platforms depend on the Embree library.
if env["arch"] == "arm64" and platform == "windows" and env.msvc:
2024-04-30 10:50:04 +00:00
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