summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorProgramneer <kacperbogangibas@gmail.com>2024-05-12 08:50:41 +0200
committerProgramneer <kacperbogangibas@gmail.com>2024-05-12 13:12:56 +0200
commitefaba30116ebe9851d74d5bc20d5443730d23ad7 (patch)
tree6059d66c0e03be2b59cf74099a8c267d7ee48cd0 /SConstruct
parentbdc0316217940a8ccc80ce536547d42e6477adf4 (diff)
downloadredot-engine-efaba30116ebe9851d74d5bc20d5443730d23ad7.tar.gz
Don't define NO_EDITOR_SPLASH in export templates
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct17
1 files changed, 9 insertions, 8 deletions
diff --git a/SConstruct b/SConstruct
index cfedcc84ed..512c35f207 100644
--- a/SConstruct
+++ b/SConstruct
@@ -492,14 +492,15 @@ if methods.get_cmdline_bool("fast_unsafe", env.dev_build):
if env["use_precise_math_checks"]:
env.Append(CPPDEFINES=["PRECISE_MATH_CHECKS"])
-if env.editor_build and env["engine_update_check"]:
- env.Append(CPPDEFINES=["ENGINE_UPDATE_CHECK_ENABLED"])
-
-if not env.File("#main/splash_editor.png").exists():
- # Force disabling editor splash if missing.
- env["no_editor_splash"] = True
-if env["no_editor_splash"]:
- env.Append(CPPDEFINES=["NO_EDITOR_SPLASH"])
+if env.editor_build:
+ if env["engine_update_check"]:
+ env.Append(CPPDEFINES=["ENGINE_UPDATE_CHECK_ENABLED"])
+
+ if not env.File("#main/splash_editor.png").exists():
+ # Force disabling editor splash if missing.
+ env["no_editor_splash"] = True
+ if env["no_editor_splash"]:
+ env.Append(CPPDEFINES=["NO_EDITOR_SPLASH"])
if not env["deprecated"]:
env.Append(CPPDEFINES=["DISABLE_DEPRECATED"])