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