summaryrefslogtreecommitdiff
path: root/tests/projects/other/multiplats_xcode/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-12-17 00:05:59 +0800
committerruki <[email protected]>2020-12-17 00:05:59 +0800
commit99fef1222a2e7905ce4ad396c848ffaf0a991849 (patch)
treeba6d080b1fc23cf72c618d30b3de6c553df9fc24 /tests/projects/other/multiplats_xcode/xmake.lua
parentcd5449d66ce5463202b4ccde6b41edf9486b42f5 (diff)
move tests
Diffstat (limited to 'tests/projects/other/multiplats_xcode/xmake.lua')
-rw-r--r--tests/projects/other/multiplats_xcode/xmake.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/projects/other/multiplats_xcode/xmake.lua b/tests/projects/other/multiplats_xcode/xmake.lua
new file mode 100644
index 000000000..e8fbbb372
--- /dev/null
+++ b/tests/projects/other/multiplats_xcode/xmake.lua
@@ -0,0 +1,15 @@
+add_rules("mode.debug", "mode.release")
+target("test_host")
+ set_kind("binary")
+ add_files("src/*.c")
+
+target("test_iphoneos")
+ set_kind("binary")
+ add_files("src/*.c")
+ set_plat("iphoneos")
+
+target("test_iphoneos_armv7")
+ set_kind("binary")
+ add_files("src/*.c")
+ set_plat("iphoneos")
+ set_arch("armv7")