config.py 343 B

12345678910111213
  1. def can_build(env, platform):
  2. # Supported architectures depend on the Embree library.
  3. if env["arch"] in ["x86_64", "arm64", "wasm32"]:
  4. return True
  5. # x86_32 only seems supported on Windows for now.
  6. if env["arch"] == "x86_32" and platform == "windows":
  7. return True
  8. return False
  9. def configure(env):
  10. pass