summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-09-23 09:13:41 +0200
committerGitHub <noreply@github.com>2020-09-23 09:13:41 +0200
commit6f50571effd46b2e69291b553bb64910e0b6db93 (patch)
treece45e65501eb6fbf4301c83a4e451ca51ba82fd7 /modules
parentbb2466bbc077a223192ef012b8a552daf37a3864 (diff)
parentf49199bcc36311db7a74bc204d7bca047706bb62 (diff)
Merge pull request #42195 from extrawurst/patch-1
add iOS Simulator platform
Diffstat (limited to 'modules')
-rw-r--r--modules/gdnative/gdnative_library_editor_plugin.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdnative/gdnative_library_editor_plugin.cpp b/modules/gdnative/gdnative_library_editor_plugin.cpp
index fdd755845f..f0f095ddf5 100644
--- a/modules/gdnative/gdnative_library_editor_plugin.cpp
+++ b/modules/gdnative/gdnative_library_editor_plugin.cpp
@@ -318,6 +318,7 @@ GDNativeLibraryEditor::GDNativeLibraryEditor() {
platform_ios.name = "iOS";
platform_ios.entries.push_back("armv7");
platform_ios.entries.push_back("arm64");
+ platform_ios.entries.push_back("x86_64");
// iOS can use both Static and Dynamic libraries.
// Frameworks is actually a folder with files.
platform_ios.library_extension = "*.framework; Framework, *.xcframework; Binary Framework, *.a; Static Library, *.dylib; Dynamic Library";