diff options
| author | Akaps316 <[email protected]> | 2026-04-05 10:58:30 +0530 |
|---|---|---|
| committer | Akaps316 <[email protected]> | 2026-04-05 10:58:30 +0530 |
| commit | 9b189a6f1098e55c4ea6d1928644bed4acf5a412 (patch) | |
| tree | 24c57eb099605c9b10e322fdf648f2ba96d4886e /tests/projects/objc/macapp_duplicate_rpath/xmake.lua | |
| parent | d0f83e55778e37afc767cf8fa382e16d6e5dc001 (diff) | |
| parent | 95e7d1658cb820accdc1bea5c79562331be9baf7 (diff) | |
fix(xcode.application): resolve merge conflict with upstream dev
Diffstat (limited to 'tests/projects/objc/macapp_duplicate_rpath/xmake.lua')
| -rw-r--r-- | tests/projects/objc/macapp_duplicate_rpath/xmake.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/projects/objc/macapp_duplicate_rpath/xmake.lua b/tests/projects/objc/macapp_duplicate_rpath/xmake.lua new file mode 100644 index 000000000..a9428203f --- /dev/null +++ b/tests/projects/objc/macapp_duplicate_rpath/xmake.lua @@ -0,0 +1,9 @@ +add_rules("mode.release", "mode.debug") + +set_languages("c11", "objc") + +target("demo") + add_rules("xcode.application") + add_rpathdirs("@executable_path/../Frameworks") + add_files("src/main.m") + add_files("src/Info.plist") |
