summaryrefslogtreecommitdiff
path: root/tests/projects/objc/iosapp_framework_rpath/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2026-04-05 17:21:30 +0800
committerGitHub <[email protected]>2026-04-05 17:21:30 +0800
commit4a13e671f0ba99feca8daf4a1706e9bcb4ccfa67 (patch)
tree24c57eb099605c9b10e322fdf648f2ba96d4886e /tests/projects/objc/iosapp_framework_rpath/xmake.lua
parent95e7d1658cb820accdc1bea5c79562331be9baf7 (diff)
parent9b189a6f1098e55c4ea6d1928644bed4acf5a412 (diff)
Merge pull request #7451 from Akaps316/codex/fix-ios-framework-rpath
fix(xcode.application): use the correct framework rpath for iOS apps
Diffstat (limited to 'tests/projects/objc/iosapp_framework_rpath/xmake.lua')
-rw-r--r--tests/projects/objc/iosapp_framework_rpath/xmake.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/projects/objc/iosapp_framework_rpath/xmake.lua b/tests/projects/objc/iosapp_framework_rpath/xmake.lua
new file mode 100644
index 000000000..68d0d7db1
--- /dev/null
+++ b/tests/projects/objc/iosapp_framework_rpath/xmake.lua
@@ -0,0 +1,13 @@
+add_rules("mode.release", "mode.debug")
+
+target("test")
+ add_rules("xcode.framework")
+ add_files("src/framework/test.m")
+ add_files("src/framework/Info.plist")
+ add_headerfiles("src/framework/test.h")
+
+target("demo")
+ add_rules("xcode.application")
+ add_deps("test")
+ add_files("src/app/*.m")
+ add_files("src/app/Info.plist")