summaryrefslogtreecommitdiff
path: root/tests/projects/objc/macapp/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/objc/macapp/xmake.lua')
-rw-r--r--tests/projects/objc/macapp/xmake.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/projects/objc/macapp/xmake.lua b/tests/projects/objc/macapp/xmake.lua
index e1e9e6d74..71e2af16b 100644
--- a/tests/projects/objc/macapp/xmake.lua
+++ b/tests/projects/objc/macapp/xmake.lua
@@ -1,6 +1,13 @@
add_rules("mode.debug", "mode.release")
+rule("test")
+ add_deps("xcode.application")
+ after_build(function ()
+ print("xxx")
+ end)
+
target("test")
add_rules("xcode.application")
add_files("src/*.m", "src/**.storyboard", "src/*.xcassets")
add_files("src/Info.plist")
+ add_rules("test")