summaryrefslogtreecommitdiff
path: root/xmake/rules/xcode/framework
diff options
context:
space:
mode:
authorruki <[email protected]>2022-08-31 12:51:20 +0800
committerGitHub <[email protected]>2022-08-31 12:51:20 +0800
commitcfb302ba06a479ffddcf28e8acf727bea5d638fa (patch)
tree7191ddbb89c4812cf0b28f2e7aa5d3027363adad /xmake/rules/xcode/framework
parent3e398cf349c1ff3b9e9ebfa92f9dff99dfa8a97f (diff)
parent6046e78b4d3ba893ef99f3e821736830dca1e5c2 (diff)
Merge pull request #2745 from xmake-io/symlink
improve symlink
Diffstat (limited to 'xmake/rules/xcode/framework')
-rw-r--r--xmake/rules/xcode/framework/xmake.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/xmake/rules/xcode/framework/xmake.lua b/xmake/rules/xcode/framework/xmake.lua
index 687b67208..6fffa8f46 100644
--- a/xmake/rules/xcode/framework/xmake.lua
+++ b/xmake/rules/xcode/framework/xmake.lua
@@ -172,9 +172,7 @@ rule("xcode.framework")
if not os.isdir(installdir) then
os.mkdir(installdir)
end
- -- TODO we should improve os.cp to support symlink
- --os.vcp(bundledir, installdir, {symlink = true})
- appbuild.copy_frameworks(bundledir, installdir)
+ os.vcp(bundledir, installdir, {symlink = true})
end
end)