summaryrefslogtreecommitdiffstats
path: root/test/project/example.gdextension
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-11-05 23:04:03 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-11-09 20:01:59 +0200
commit29b34d92bbaa467fa6f9b28071563ffb340702ba (patch)
tree5862d27d16315867946796d390f4318b9cf7e91d /test/project/example.gdextension
parentcc89bd21324c3820d1823456563bcc30855b5c5e (diff)
downloadredot-cpp-29b34d92bbaa467fa6f9b28071563ffb340702ba.tar.gz
[iOS] Fix building as static library or xcframework, add iOS config and xcframework build script to the test project.
Diffstat (limited to 'test/project/example.gdextension')
-rw-r--r--test/project/example.gdextension16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/project/example.gdextension b/test/project/example.gdextension
index 30279e6..4f599ce 100644
--- a/test/project/example.gdextension
+++ b/test/project/example.gdextension
@@ -11,8 +11,14 @@ windows.debug.x86_32 = "res://bin/libgdexample.windows.template_debug.x86_32.dll
windows.release.x86_32 = "res://bin/libgdexample.windows.template_release.x86_32.dll"
windows.debug.x86_64 = "res://bin/libgdexample.windows.template_debug.x86_64.dll"
windows.release.x86_64 = "res://bin/libgdexample.windows.template_release.x86_64.dll"
+windows.debug.arm64 = "res://bin/libgdexample.windows.template_debug.arm64.dll"
+windows.release.arm64 = "res://bin/libgdexample.windows.template_release.arm64.dll"
+linux.debug.x86_32 = "res://bin/libgdexample.linux.template_debug.x86_32.so"
+linux.release.x86_32 = "res://bin/libgdexample.linux.template_release.x86_32.so"
linux.debug.x86_64 = "res://bin/libgdexample.linux.template_debug.x86_64.so"
linux.release.x86_64 = "res://bin/libgdexample.linux.template_release.x86_64.so"
+linux.debug.arm32 = "res://bin/libgdexample.linux.template_debug.arm32.so"
+linux.release.arm32 = "res://bin/libgdexample.linux.template_release.arm32.so"
linux.debug.arm64 = "res://bin/libgdexample.linux.template_debug.arm64.so"
linux.release.arm64 = "res://bin/libgdexample.linux.template_release.arm64.so"
linux.debug.rv64 = "res://bin/libgdexample.linux.template_debug.rv64.so"
@@ -21,5 +27,15 @@ android.debug.x86_64 = "res://bin/libgdexample.android.template_debug.x86_64.so"
android.release.x86_64 = "res://bin/libgdexample.android.template_release.x86_64.so"
android.debug.arm64 = "res://bin/libgdexample.android.template_debug.arm64.so"
android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so"
+ios.debug = "res://bin/libgdexample.ios.template_debug.xcframework"
+ios.release = "res://bin/libgdexample.ios.template_release.xcframework"
web.debug.wasm32 = "res://bin/libgdexample.web.template_debug.wasm32.wasm"
web.release.wasm32 = "res://bin/libgdexample.web.template_release.wasm32.wasm"
+
+[dependencies]
+ios.debug = {
+ "res://bin/libgodot-cpp.ios.template_debug.xcframework": ""
+}
+ios.release = {
+ "res://bin/libgodot-cpp.ios.template_release.xcframework": ""
+}