2016-10-17 17:14:07 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
Import('env_modules')
|
|
|
|
|
|
|
|
env_webm = env_modules.Clone()
|
|
|
|
|
|
|
|
# Thirdparty source files
|
|
|
|
thirdparty_libsimplewebm_dir = "#thirdparty/libsimplewebm/"
|
|
|
|
thirdparty_libsimplewebm_sources = [
|
2016-10-30 18:44:57 +01:00
|
|
|
"libwebm/mkvparser/mkvparser.cc",
|
|
|
|
"OpusVorbisDecoder.cpp",
|
|
|
|
"VPXDecoder.cpp",
|
|
|
|
"WebMDemuxer.cpp",
|
2016-10-17 17:14:07 +02:00
|
|
|
]
|
|
|
|
thirdparty_libsimplewebm_sources = [thirdparty_libsimplewebm_dir + file for file in thirdparty_libsimplewebm_sources]
|
|
|
|
|
|
|
|
env_webm.add_source_files(env.modules_sources, thirdparty_libsimplewebm_sources)
|
2016-10-30 18:57:40 +01:00
|
|
|
env_webm.Append(CPPPATH=[thirdparty_libsimplewebm_dir, thirdparty_libsimplewebm_dir + "libwebm/"])
|
2016-10-17 17:14:07 +02:00
|
|
|
|
|
|
|
# also requires libogg, libvorbis and libopus
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["libogg"] != "system"): # builtin
|
|
|
|
env_webm.Append(CPPPATH=["#thirdparty/libogg"])
|
|
|
|
if (env["libvorbis"] != "system"): # builtin
|
|
|
|
env_webm.Append(CPPPATH=["#thirdparty/libvorbis"])
|
|
|
|
if (env["opus"] != "system"): # builtin
|
|
|
|
env_webm.Append(CPPPATH=["#thirdparty"])
|
2016-10-17 17:14:07 +02:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["libvpx"] != "system"): # builtin
|
2016-10-30 18:44:57 +01:00
|
|
|
Export('env_webm')
|
|
|
|
SConscript("libvpx/SCsub")
|
2016-10-17 17:14:07 +02:00
|
|
|
|
|
|
|
# Godot source files
|
|
|
|
env_webm.add_source_files(env.modules_sources, "*.cpp")
|