diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-11-15 20:50:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 20:50:25 +0000 |
commit | 9767837a7ec40697788765e581131cb2cf172567 (patch) | |
tree | d58eaa8daad3e30c8b84a50e70a21f93b05525c5 /platform_methods.py | |
parent | ac1a49725fc038ae11ef9060fecb2b0f9c6333b2 (diff) | |
parent | 4a5836e5462554a738b502aa8bbde5e4a051eb56 (diff) | |
download | redot-engine-9767837a7ec40697788765e581131cb2cf172567.tar.gz |
Merge pull request #864 from Spartan322/merge/6c05ec3
Merge commit godotengine/godot@6c05ec3
Diffstat (limited to 'platform_methods.py')
-rw-r--r-- | platform_methods.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/platform_methods.py b/platform_methods.py index 2c4eb0d1dd..201df3c0b5 100644 --- a/platform_methods.py +++ b/platform_methods.py @@ -8,6 +8,13 @@ import methods # NOTE: The multiprocessing module is not compatible with SCons due to conflict on cPickle +compatibility_platform_aliases = { + "osx": "macos", + "iphone": "ios", + "x11": "linuxbsd", + "javascript": "web", +} + # CPU architecture options. architectures = ["x86_32", "x86_64", "arm32", "arm64", "rv64", "ppc32", "ppc64", "wasm32"] architecture_aliases = { |