config.py 417 B

1234567891011121314151617181920212223242526
  1. def can_build(env, platform):
  2. return True
  3. def get_opts(platform):
  4. from SCons.Variables import BoolVariable
  5. return [
  6. BoolVariable("minimp3_extra_formats", "Build minimp3 with MP1/MP2 decoding support", False),
  7. ]
  8. def configure(env):
  9. pass
  10. def get_doc_classes():
  11. return [
  12. "AudioStreamMP3",
  13. "ResourceImporterMP3",
  14. ]
  15. def get_doc_path():
  16. return "doc_classes"