summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2023-04-11 01:14:18 +0200
committerkobewi <kobewi4e@gmail.com>2024-04-15 15:08:27 +0200
commit49e69fabba8552d3ae17bdf323d5f5dbff40d6a6 (patch)
tree310d871b21a40bc160d3b8c6e4d5158b49cbe63f /SConstruct
parentb8fa48be040890f344a5178cf0fb9ea69c24f88e (diff)
downloadredot-engine-49e69fabba8552d3ae17bdf323d5f5dbff40d6a6.tar.gz
Add automatic checking for engine updates
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 6a99662c48..f6c3b33fc6 100644
--- a/SConstruct
+++ b/SConstruct
@@ -228,6 +228,7 @@ opts.Add(
opts.Add(BoolVariable("use_precise_math_checks", "Math checks use very precise epsilon (debug option)", False))
opts.Add(BoolVariable("scu_build", "Use single compilation unit build", False))
opts.Add("scu_limit", "Max includes per SCU file when using scu_build (determines RAM use)", "0")
+opts.Add(BoolVariable("engine_update_check", "Enable engine update checks in the Project Manager", True))
# Thirdparty libraries
opts.Add(BoolVariable("builtin_brotli", "Use the built-in Brotli library", True))
@@ -474,6 +475,9 @@ if methods.get_cmdline_bool("fast_unsafe", env_base.dev_build):
if env_base["use_precise_math_checks"]:
env_base.Append(CPPDEFINES=["PRECISE_MATH_CHECKS"])
+if env_base["engine_update_check"]:
+ env_base.Append(CPPDEFINES=["ENGINE_UPDATE_CHECK_ENABLED"])
+
if not env_base.File("#main/splash_editor.png").exists():
# Force disabling editor splash if missing.
env_base["no_editor_splash"] = True