2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-10-12 20:37:38 +02:00
|
|
|
Import('env')
|
|
|
|
Import('env_modules')
|
|
|
|
|
2016-10-13 18:54:00 +02:00
|
|
|
env_vorbis = env_modules.Clone()
|
|
|
|
|
2017-09-14 22:45:02 +02:00
|
|
|
stub = True
|
|
|
|
|
2016-10-12 20:37:38 +02:00
|
|
|
# Thirdparty source files
|
2017-09-25 06:22:58 +02:00
|
|
|
if env['builtin_libvorbis']:
|
2016-10-30 18:44:57 +01:00
|
|
|
thirdparty_dir = "#thirdparty/libvorbis/"
|
|
|
|
thirdparty_sources = [
|
|
|
|
#"analysis.c",
|
|
|
|
#"barkmel.c",
|
|
|
|
"bitrate.c",
|
|
|
|
"block.c",
|
|
|
|
"codebook.c",
|
|
|
|
"envelope.c",
|
|
|
|
"floor0.c",
|
|
|
|
"floor1.c",
|
|
|
|
"info.c",
|
|
|
|
"lookup.c",
|
|
|
|
"lpc.c",
|
|
|
|
"lsp.c",
|
|
|
|
"mapping0.c",
|
|
|
|
"mdct.c",
|
|
|
|
"psy.c",
|
|
|
|
#"psytune.c",
|
|
|
|
"registry.c",
|
|
|
|
"res0.c",
|
|
|
|
"sharedbook.c",
|
|
|
|
"smallft.c",
|
|
|
|
"synthesis.c",
|
|
|
|
#"tone.c",
|
|
|
|
#"vorbisenc.c",
|
|
|
|
"vorbisfile.c",
|
|
|
|
"window.c",
|
|
|
|
]
|
2016-10-12 20:37:38 +02:00
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
2016-10-12 20:37:38 +02:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
env_vorbis.Append(CPPPATH=[thirdparty_dir])
|
2016-10-12 20:37:38 +02:00
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
# also requires libogg
|
2017-09-25 06:22:58 +02:00
|
|
|
if env['builtin_libogg']:
|
2016-10-30 18:57:40 +01:00
|
|
|
env_vorbis.Append(CPPPATH=["#thirdparty/libogg"])
|
2016-10-12 20:37:38 +02:00
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
env_thirdparty = env_vorbis.Clone()
|
|
|
|
env_thirdparty.disable_warnings()
|
|
|
|
env_thirdparty.add_source_files(env.modules_sources, thirdparty_sources)
|
|
|
|
|
2017-09-14 22:45:02 +02:00
|
|
|
if not stub:
|
|
|
|
# Module files
|
|
|
|
env_vorbis.add_source_files(env.modules_sources, "*.cpp")
|
|
|
|
else:
|
|
|
|
# Module files
|
|
|
|
env_vorbis.add_source_files(env.modules_sources, "stub/register_types.cpp")
|