diff options
| -rw-r--r-- | xmake/rules/xcode/bundle/xmake.lua | 2 | ||||
| -rw-r--r-- | xmake/rules/xcode/framework/xmake.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/xcode/bundle/xmake.lua b/xmake/rules/xcode/bundle/xmake.lua index 31c0a8296..972d7d75e 100644 --- a/xmake/rules/xcode/bundle/xmake.lua +++ b/xmake/rules/xcode/bundle/xmake.lua @@ -62,7 +62,7 @@ rule("xcode.bundle") end end) - after_build(function (target, opt) + after_link(function (target, opt) -- imports import("core.base.option") diff --git a/xmake/rules/xcode/framework/xmake.lua b/xmake/rules/xcode/framework/xmake.lua index 10b2f337f..46850c019 100644 --- a/xmake/rules/xcode/framework/xmake.lua +++ b/xmake/rules/xcode/framework/xmake.lua @@ -78,7 +78,7 @@ rule("xcode.framework") end end) - after_build(function (target, opt) + after_link(function (target, opt) -- imports import("core.base.option") |
