2018-05-30 17:11:33 +00:00
|
|
|
def can_build(env, platform):
|
2020-06-02 11:16:42 +00:00
|
|
|
return env.module_check_dependencies("vorbis", ["ogg"])
|
2016-10-12 18:37:38 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
|
2016-10-12 18:37:38 +00:00
|
|
|
def configure(env):
|
2016-10-30 17:44:57 +00:00
|
|
|
pass
|
2021-09-10 01:54:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"AudioStreamOGGVorbis",
|
|
|
|
"AudioStreamPlaybackOGGVorbis",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|