diff options
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") |
