summaryrefslogtreecommitdiffstats
path: root/platform
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-11-10 10:44:56 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-11-10 10:44:56 +0100
commitdfe2df989dfdc2b1c9c28882f7aa8f6c64731bc4 (patch)
tree54c7e087243a261b9aa7b5ed84300966d9b7a095 /platform
parenta9c864dc3530943161dba967a629d04c5ea6dc92 (diff)
parentd4d5d68edaf9bb8f2f62b9938b21df9fd3ab3336 (diff)
downloadredot-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 'platform')
-rw-r--r--platform/ios/detect.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/ios/detect.py b/platform/ios/detect.py
index 40eb61abc8..26d81c8ed6 100644
--- a/platform/ios/detect.py
+++ b/platform/ios/detect.py
@@ -105,6 +105,7 @@ def configure(env: "Environment"):
detect_darwin_sdk_path("iossimulator", env)
env.Append(ASFLAGS=["-mios-simulator-version-min=12.0"])
env.Append(CCFLAGS=["-mios-simulator-version-min=12.0"])
+ env.Append(CPPDEFINES=["IOS_SIMULATOR"])
env.extra_suffix = ".simulator" + env.extra_suffix
else:
detect_darwin_sdk_path("ios", env)