diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-12-20 15:07:40 +0100 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-12-20 15:07:40 +0100 |
commit | 718598e470300daa92043216d0c59e25e3e2da66 (patch) | |
tree | 88f57625343208a653a3ed25881ee73659fb7666 /SConstruct | |
parent | e11e0a7f07d59c42a8a9351a2704a1b47531c911 (diff) | |
parent | 018583598833937f9fdc8a275d7731562c392d74 (diff) | |
download | redot-engine-718598e470300daa92043216d0c59e25e3e2da66.tar.gz |
Merge pull request #84979 from Calinou/scons-web-platform-alias
Alias `platform=javascript` SCons option to `platform=web`
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/SConstruct b/SConstruct index da2f89fbeb..c7b9d5bc86 100644 --- a/SConstruct +++ b/SConstruct @@ -308,18 +308,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"]: @@ -329,6 +325,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 |