mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
26 lines
751 B
Python
26 lines
751 B
Python
|
def can_build(env, platform):
|
||
|
if not env["tools"]:
|
||
|
return False
|
||
|
|
||
|
# Depends on Embree library, which only supports x86_64 and aarch64.
|
||
|
if env["arch"] in ["arm", "arm32"] or env["arch"].startswith("rv") or env["arch"].startswith("ppc"):
|
||
|
return False
|
||
|
|
||
|
if platform == "android":
|
||
|
return env["android_arch"] in ["arm64v8", "x86_64"]
|
||
|
|
||
|
if platform in ["javascript", "server"]:
|
||
|
return False
|
||
|
|
||
|
if env["bits"] == "32":
|
||
|
return False
|
||
|
|
||
|
return True
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|
||
|
|
||
|
def get_license_file():
|
||
|
return "COPYRIGHT.txt"
|