summaryrefslogtreecommitdiff
path: root/xmake/rules/xcode/application/build.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2021-02-18 00:49:42 +0800
committerruki <[email protected]>2021-02-18 00:49:42 +0800
commit46e0f6a1adda408052ba5b87c244cedaae5f1d00 (patch)
treebe3ff982685afc14e7dab6f57d3801d2477ca629 /xmake/rules/xcode/application/build.lua
parent6417f5b6b8aa784dc5a734511365597d707ce8dc (diff)
rename targetkind to kind
Diffstat (limited to 'xmake/rules/xcode/application/build.lua')
-rw-r--r--xmake/rules/xcode/application/build.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/xcode/application/build.lua b/xmake/rules/xcode/application/build.lua
index 0ba319bfa..786f5da89 100644
--- a/xmake/rules/xcode/application/build.lua
+++ b/xmake/rules/xcode/application/build.lua
@@ -48,7 +48,7 @@ function main (target, opt)
-- copy dependent dynamic libraries, TODO copy frameworks
for _, dep in ipairs(target:orderdeps()) do
- if dep:targetkind() == "shared" then
+ if dep:kind() == "shared" then
os.vcp(dep:targetfile(), binarydir)
end
end