mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 05:33:11 +00:00
474d0f58f5
Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
19 lines
309 B
Python
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"
|