[Windows] Improve build environment detection, add support for Windows on ARM.
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
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"]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user