config.py 563 B

123456789101112131415161718192021222324252627
  1. def can_build(env, platform):
  2. if (
  3. platform == "linuxbsd" or platform == "windows"
  4. ): # or platform == "android" -- temporarily disabled android support
  5. return env["openxr"]
  6. else:
  7. # not supported on these platforms
  8. return False
  9. def configure(env):
  10. pass
  11. def get_doc_classes():
  12. return [
  13. "OpenXRInterface",
  14. "OpenXRAction",
  15. "OpenXRActionSet",
  16. "OpenXRActionMap",
  17. "OpenXRInteractionProfile",
  18. "OpenXRIPBinding",
  19. ]
  20. def get_doc_path():
  21. return "doc_classes"