diff options
author | Clay John <claynjohn@gmail.com> | 2024-10-29 12:34:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-29 12:34:40 -0700 |
commit | 748f4079e387fb555ee64c1619e94ba099bfa77a (patch) | |
tree | e296233766ae58d195f16c5e9f30191f7ba64ad8 /SConstruct | |
parent | 08f9cba0fbf27f171dea55de6f8274928b9f0d84 (diff) | |
parent | aaa0e2fddfead4a31afddc07a26cd6af0c19dacd (diff) | |
download | redot-engine-748f4079e387fb555ee64c1619e94ba099bfa77a.tar.gz |
Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebased
Add Swappy & Pre-Transformed Swapchain
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 785cc0b1a3..cd57bb526c 100644 --- a/SConstruct +++ b/SConstruct @@ -229,6 +229,7 @@ opts.Add(BoolVariable("use_volk", "Use the volk library to load the Vulkan loade opts.Add(BoolVariable("disable_exceptions", "Force disabling exception handling code", True)) opts.Add("custom_modules", "A list of comma-separated directory paths containing custom modules to build.", "") opts.Add(BoolVariable("custom_modules_recursive", "Detect custom modules recursively for each specified path.", True)) +opts.Add(BoolVariable("swappy", "Use Swappy Frame Pacing Library in Android builds.", False)) # Advanced options opts.Add( @@ -611,6 +612,8 @@ if env["dev_mode"]: if env["production"]: env["use_static_cpp"] = methods.get_cmdline_bool("use_static_cpp", True) env["debug_symbols"] = methods.get_cmdline_bool("debug_symbols", False) + if platform_arg == "android": + env["swappy"] = methods.get_cmdline_bool("swappy", True) # LTO "auto" means we handle the preferred option in each platform detect.py. env["lto"] = ARGUMENTS.get("lto", "auto") |