config.py 258 B

123456789101112131415
  1. def can_build(platform):
  2. # should probably change this to only be true on iOS and Android
  3. return True
  4. def configure(env):
  5. pass
  6. def get_doc_classes():
  7. return [
  8. "MobileVRInterface",
  9. ]
  10. def get_doc_path():
  11. return "doc_classes"