diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-10 10:44:56 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-11-10 10:44:56 +0100 |
commit | dfe2df989dfdc2b1c9c28882f7aa8f6c64731bc4 (patch) | |
tree | 54c7e087243a261b9aa7b5ed84300966d9b7a095 /core/os/os.cpp | |
parent | a9c864dc3530943161dba967a629d04c5ea6dc92 (diff) | |
parent | d4d5d68edaf9bb8f2f62b9938b21df9fd3ab3336 (diff) | |
download | redot-engine-dfe2df989dfdc2b1c9c28882f7aa8f6c64731bc4.tar.gz |
Merge pull request #84493 from bruvzg/gde_ios_static_fix
[iOS, GDExtension] Fix loading and exporting static libraries and xcframeworks.
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r-- | core/os/os.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 991b179e1f..c7390f14ff 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -490,6 +490,12 @@ bool OS::has_feature(const String &p_feature) { } #endif +#if defined(IOS_SIMULATOR) + if (p_feature == "simulator") { + return true; + } +#endif + if (_check_internal_feature_support(p_feature)) { return true; } |