summaryrefslogtreecommitdiff
path: root/modules/raycast/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/raycast/config.py')
-rw-r--r--modules/raycast/config.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/raycast/config.py b/modules/raycast/config.py
index 833ad50018..26329d813a 100644
--- a/modules/raycast/config.py
+++ b/modules/raycast/config.py
@@ -1,9 +1,11 @@
def can_build(env, platform):
- # Depends on Embree library, which only supports x86_64 and arm64.
- if platform == "windows":
- return env["arch"] == "x86_64" # TODO build for Windows on ARM
-
- return env["arch"] in ["x86_64", "arm64"]
+ # Supported architectures depend on the Embree library.
+ if env["arch"] in ["x86_64", "arm64", "wasm32"]:
+ return True
+ # x86_32 only seems supported on Windows for now.
+ if env["arch"] == "x86_32" and platform == "windows":
+ return True
+ return False
def configure(env):