This commit is contained in:
Spartan322
2025-06-10 22:00:50 -04:00
752 changed files with 308535 additions and 451989 deletions

View File

@@ -13,7 +13,6 @@ thirdparty_obj = []
if env["builtin_libvorbis"]:
thirdparty_dir = "#thirdparty/libvorbis/"
thirdparty_sources = [
# "analysis.c",
# "barkmel.c",
"bitrate.c",
"block.c",
@@ -35,11 +34,16 @@ if env["builtin_libvorbis"]:
"smallft.c",
"synthesis.c",
# "tone.c",
# "vorbisenc.c",
"vorbisfile.c",
"window.c",
]
if env.editor_build:
thirdparty_sources += [
"analysis.c",
"vorbisenc.c",
]
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
env_vorbis.Prepend(CPPEXTPATH=[thirdparty_dir])