mirror of
https://github.com/godotengine/godot.git
synced 2025-01-18 20:40:57 +08:00
27b0f18275
Fully removes the `bits` option and adapts the code that relied on it. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
8 lines
178 B
Python
8 lines
178 B
Python
def can_build(env, platform):
|
|
# Depends on Embree library, which only supports x86_64 and arm64.
|
|
return env["arch"] in ["x86_64", "arm64"]
|
|
|
|
|
|
def configure(env):
|
|
pass
|