godot/modules/theora/config.py
Aaron Franke 474d0f58f5
Add support for the RISC-V architecture
Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
2021-10-22 12:51:10 -05:00

19 lines
309 B
Python

def can_build(env, platform):
if env["arch"].startswith("rv"):
return False
return env.module_check_dependencies("theora", ["ogg", "vorbis"])
def configure(env):
pass
def get_doc_classes():
return [
"VideoStreamTheora",
]
def get_doc_path():
return "doc_classes"