2020-12-19 18:17:22 +01:00
|
|
|
def can_build(env, platform):
|
2021-04-22 18:53:43 +02:00
|
|
|
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.
|
|
|
|
|
2021-05-04 11:07:12 +02:00
|
|
|
if platform == "android":
|
2021-05-05 18:01:39 +02:00
|
|
|
return env["android_arch"] in ["arm64v8", "x86_64"]
|
2021-04-22 18:53:43 +02:00
|
|
|
|
2021-05-04 11:07:12 +02:00
|
|
|
if platform in ["javascript", "server"]:
|
|
|
|
return False
|
2021-04-22 18:53:43 +02:00
|
|
|
|
2021-05-05 18:01:39 +02:00
|
|
|
if env["bits"] == "32":
|
|
|
|
return False
|
|
|
|
|
2021-05-04 11:07:12 +02:00
|
|
|
return True
|
2020-12-19 18:17:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|