2020-10-22 02:33:40 +02:00
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2023-02-05 10:58:35 +01:00
|
|
|
def get_opts(platform):
|
|
|
|
from SCons.Variables import BoolVariable
|
|
|
|
|
|
|
|
return [
|
|
|
|
BoolVariable("minimp3_extra_formats", "Build minimp3 with MP1/MP2 decoding support", False),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-10-22 02:33:40 +02:00
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"AudioStreamMP3",
|
2021-05-13 22:34:34 +02:00
|
|
|
"ResourceImporterMP3",
|
2020-10-22 02:33:40 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|