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