diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-07-06 14:46:34 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-07-06 15:26:38 +0200 |
commit | 153c4a4c4fd9ab142004d3448d1de4923a15a871 (patch) | |
tree | c38a566c5c86177d490605e039d1f8a3085bfd1d /SConstruct | |
parent | b7c2fd2e9a7f01644e15fef86083a3e0e0221e4d (diff) | |
download | redot-engine-153c4a4c4fd9ab142004d3448d1de4923a15a871.tar.gz |
Linux: Allow unbundling brotli to use system library
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index f65e6bab04..7e706e8e73 100644 --- a/SConstruct +++ b/SConstruct @@ -222,6 +222,7 @@ opts.Add(BoolVariable("use_precise_math_checks", "Math checks use very precise e opts.Add(BoolVariable("scu_build", "Use single compilation unit build", False)) # Thirdparty libraries +opts.Add(BoolVariable("builtin_brotli", "Use the built-in Brotli library", True)) opts.Add(BoolVariable("builtin_certs", "Use the built-in SSL certificates bundles", True)) opts.Add(BoolVariable("builtin_embree", "Use the built-in Embree library", True)) opts.Add(BoolVariable("builtin_enet", "Use the built-in ENet library", True)) |