summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2023-11-16 15:51:20 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2023-11-16 17:53:03 +0100
commit018583598833937f9fdc8a275d7731562c392d74 (patch)
tree5e30f18c203d8ce0c01d37f5f27d1b4a5094f5d9 /SConstruct
parent47c7abc212d6e87366c2f01db573595b1f48a2e2 (diff)
downloadredot-engine-018583598833937f9fdc8a275d7731562c392d74.tar.gz
Alias `platform=javascript` SCons option to `platform=web`
This makes build scripts backward-compatible, as was already done for other platforms that were renamed in 4.0.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct21
1 files changed, 11 insertions, 10 deletions
diff --git a/SConstruct b/SConstruct
index 534d5bd95d..f6946eb64c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -299,18 +299,14 @@ else:
if selected_platform != "":
print("Automatically detected platform: " + selected_platform)
-if selected_platform in ["macos", "osx"]:
- if selected_platform == "osx":
- # Deprecated alias kept for compatibility.
- print('Platform "osx" has been renamed to "macos" in Godot 4. Building for platform "macos".')
- # Alias for convenience.
+if selected_platform == "osx":
+ # Deprecated alias kept for compatibility.
+ print('Platform "osx" has been renamed to "macos" in Godot 4. Building for platform "macos".')
selected_platform = "macos"
-if selected_platform in ["ios", "iphone"]:
- if selected_platform == "iphone":
- # Deprecated alias kept for compatibility.
- print('Platform "iphone" has been renamed to "ios" in Godot 4. Building for platform "ios".')
- # Alias for convenience.
+if selected_platform == "iphone":
+ # Deprecated alias kept for compatibility.
+ print('Platform "iphone" has been renamed to "ios" in Godot 4. Building for platform "ios".')
selected_platform = "ios"
if selected_platform in ["linux", "bsd", "x11"]:
@@ -320,6 +316,11 @@ if selected_platform in ["linux", "bsd", "x11"]:
# Alias for convenience.
selected_platform = "linuxbsd"
+if selected_platform == "javascript":
+ # Deprecated alias kept for compatibility.
+ print('Platform "javascript" has been renamed to "web" in Godot 4. Building for platform "web".')
+ selected_platform = "web"
+
# Make sure to update this to the found, valid platform as it's used through the buildsystem as the reference.
# It should always be re-set after calling `opts.Update()` otherwise it uses the original input value.
env_base["platform"] = selected_platform