diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-12 11:17:31 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-12 11:17:31 +0200 |
commit | 258fabdbb3209591742a745273a32157667d87ef (patch) | |
tree | cbcb8a6d367b9142ac83163c2f1ab701cc042cc4 /SConstruct | |
parent | e8bc100c816d24587acb3de9950e62e46ecc4c74 (diff) | |
parent | 6fd99823581dd05d27a1ff773b67a8ea616993cc (diff) | |
download | redot-engine-258fabdbb3209591742a745273a32157667d87ef.tar.gz |
Merge pull request #76836 from Faless/tls/system_certs
[TLS] Add support for platform-specific CA bundles.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 31ad9939fa..68329f331e 100644 --- a/SConstruct +++ b/SConstruct @@ -217,7 +217,11 @@ opts.Add(BoolVariable("disable_advanced_gui", "Disable advanced GUI nodes and be opts.Add("build_profile", "Path to a file containing a feature build profile", "") opts.Add(BoolVariable("modules_enabled_by_default", "If no, disable all modules except ones explicitly enabled", True)) opts.Add(BoolVariable("no_editor_splash", "Don't use the custom splash screen for the editor", True)) -opts.Add("system_certs_path", "Use this path as SSL certificates default for editor (for package maintainers)", "") +opts.Add( + "system_certs_path", + "Use this path as TLS certificates default for editor and Linux/BSD export templates (for package maintainers)", + "", +) opts.Add(BoolVariable("use_precise_math_checks", "Math checks use very precise epsilon (debug option)", False)) # Thirdparty libraries |