summaryrefslogtreecommitdiff
path: root/xmake/rules/xcode/framework
diff options
context:
space:
mode:
authorruki <[email protected]>2025-09-20 00:49:52 +0800
committerruki <[email protected]>2025-09-20 00:49:52 +0800
commit072c91d17ec55b94e9af3ce7fed09d885b2c2075 (patch)
tree74ec1f9673ca22718914e9a32911cfdf00340674 /xmake/rules/xcode/framework
parent7186aec3786cd31f4dea25716ddf57954bef5bf6 (diff)
optimize codesign
Diffstat (limited to 'xmake/rules/xcode/framework')
-rw-r--r--xmake/rules/xcode/framework/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/xcode/framework/xmake.lua b/xmake/rules/xcode/framework/xmake.lua
index 4e849f51b..2f0d47b87 100644
--- a/xmake/rules/xcode/framework/xmake.lua
+++ b/xmake/rules/xcode/framework/xmake.lua
@@ -156,7 +156,7 @@ rule("xcode.framework")
-- do codesign, only for dynamic library
if target:is_shared() then
- local codesign_identity = target:values("xcode.codesign_identity") or get_config("xcode_codesign_identity")
+ local codesign_identity = target:values("xcode.codesign_identity") or codesign.xcode_codesign_identity()
if target:is_plat("macosx") or (target:is_plat("iphoneos") and target:is_arch("x86_64", "i386")) then
codesign_identity = nil
end