Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/minimp3/config.py
10277 views
1
def can_build(env, platform):
2
return True
3
4
5
def get_opts(platform):
6
from SCons.Variables import BoolVariable
7
8
return [
9
BoolVariable("minimp3_extra_formats", "Build minimp3 with MP1/MP2 decoding support", False),
10
]
11
12
13
def configure(env):
14
pass
15
16
17
def get_doc_classes():
18
return [
19
"AudioStreamMP3",
20
"ResourceImporterMP3",
21
]
22
23
24
def get_doc_path():
25
return "doc_classes"
26
27