2020-10-22 00:33:40 +00:00
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2023-02-05 09:58:35 +00: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 00:33:40 +00:00
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"AudioStreamMP3",
|
2021-05-13 20:34:34 +00:00
|
|
|
"ResourceImporterMP3",
|
2020-10-22 00:33:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|