mirror of
https://github.com/godotengine/godot
synced 2024-11-02 15:10:04 +00:00
34 lines
615 B
Text
34 lines
615 B
Text
|
|
Import('env')
|
|
|
|
sources = [
|
|
"vorbis/audio_stream_ogg_vorbis.cpp",
|
|
"vorbis/analysis.c",
|
|
#"vorbis/barkmel.c",
|
|
"vorbis/bitrate.c",
|
|
"vorbis/block.c",
|
|
"vorbis/codebook.c",
|
|
"vorbis/envelope.c",
|
|
"vorbis/floor0.c",
|
|
"vorbis/floor1.c",
|
|
"vorbis/info.c",
|
|
"vorbis/lookup.c",
|
|
"vorbis/lpc.c",
|
|
"vorbis/lsp.c",
|
|
"vorbis/mapping0.c",
|
|
"vorbis/mdct.c",
|
|
"vorbis/psy.c",
|
|
#"vorbis/psytune.c",
|
|
"vorbis/registry.c",
|
|
"vorbis/res0.c",
|
|
"vorbis/sharedbook.c",
|
|
"vorbis/smallft.c",
|
|
"vorbis/synthesis.c",
|
|
#"vorbis/tone.c",
|
|
"vorbis/vorbisenc.c",
|
|
"vorbis/vorbisfile.c",
|
|
"vorbis/window.c",
|
|
]
|
|
|
|
env.drivers_sources += sources
|
|
|