scons: Reorder options for clarity
Also prefix all thirdparty-related toggles with `builtin`.
This commit is contained in:
+4
-4
@@ -19,14 +19,14 @@ env_webm.add_source_files(env.modules_sources, thirdparty_libsimplewebm_sources)
|
||||
env_webm.Append(CPPPATH=[thirdparty_libsimplewebm_dir, thirdparty_libsimplewebm_dir + "libwebm/"])
|
||||
|
||||
# also requires libogg, libvorbis and libopus
|
||||
if (env["libogg"] != "system"): # builtin
|
||||
if (env['builtin_libogg'] != 'no'):
|
||||
env_webm.Append(CPPPATH=["#thirdparty/libogg"])
|
||||
if (env["libvorbis"] != "system"): # builtin
|
||||
if (env['builtin_libvorbis'] != 'no'):
|
||||
env_webm.Append(CPPPATH=["#thirdparty/libvorbis"])
|
||||
if (env["opus"] != "system"): # builtin
|
||||
if (env['builtin_opus'] != 'no'):
|
||||
env_webm.Append(CPPPATH=["#thirdparty"])
|
||||
|
||||
if (env["libvpx"] != "system"): # builtin
|
||||
if (env['builtin_libvpx'] != 'no'):
|
||||
Export('env_webm')
|
||||
SConscript("libvpx/SCsub")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user