config.py 281 B

12345678910
  1. def can_build(env, platform):
  2. # Depends on Embree library, which only supports x86_64 and arm64.
  3. if platform == "windows":
  4. return env["arch"] == "x86_64" # TODO build for Windows on ARM
  5. return env["arch"] in ["x86_64", "arm64"]
  6. def configure(env):
  7. pass