mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-03-11 07:33:25 +01:00
This is still a bit hacky and eventually we should rework the way we handle
optional dependencies (especially with regard to builtin/system libs), but
it's a simple first step.
- akien-mga
7c74312217
18 lines
252 B
Python
18 lines
252 B
Python
|
|
def can_build(env, platform):
|
|
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"
|