diff options
| author | ruki <[email protected]> | 2020-04-05 16:15:13 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-04-05 16:15:13 +0800 |
| commit | a60c8e6025e597fd569a41e5add672d87bd4ca5a (patch) | |
| tree | ad3c7e486f6677b67eeccb86544e5c77e1b586c1 /xmake/platforms | |
| parent | b6436a2df4a37f82e38723711937743daceb5367 (diff) | |
add codesign config
Diffstat (limited to 'xmake/platforms')
| -rw-r--r-- | xmake/platforms/iphoneos/xmake.lua | 14 | ||||
| -rw-r--r-- | xmake/platforms/macosx/xmake.lua | 32 | ||||
| -rw-r--r-- | xmake/platforms/watchos/xmake.lua | 14 |
3 files changed, 33 insertions, 27 deletions
diff --git a/xmake/platforms/iphoneos/xmake.lua b/xmake/platforms/iphoneos/xmake.lua index eac65916a..3f7ec53c8 100644 --- a/xmake/platforms/iphoneos/xmake.lua +++ b/xmake/platforms/iphoneos/xmake.lua @@ -46,16 +46,18 @@ platform("iphoneos") set_menu { config = { - {category = "XCode SDK Configuration" } - , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } - , {nil, "xcode_sdkver", "kv", "auto", "The SDK Version for Xcode" } - , {nil, "target_minver", "kv", "auto", "The Target Minimal Version" } + {category = "XCode SDK Configuration" } + , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + , {nil, "xcode_sdkver", "kv", "auto", "The SDK Version for Xcode" } + , {nil, "xcode_codesign_identity", "kv", "auto", "The Codesign Identity for Xcode" } + , {nil, "target_minver", "kv", "auto", "The Target Minimal Version" } } , global = { - {category = "XCode SDK Configuration" } - , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + {category = "XCode SDK Configuration" } + , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + , {nil, "xcode_codesign_identity", "kv", "auto", "The Codesign Identity for Xcode" } } } diff --git a/xmake/platforms/macosx/xmake.lua b/xmake/platforms/macosx/xmake.lua index 683944607..611a8b5c5 100644 --- a/xmake/platforms/macosx/xmake.lua +++ b/xmake/platforms/macosx/xmake.lua @@ -49,25 +49,27 @@ platform("macosx") set_menu { config = { - {category = "XCode SDK Configuration" } - , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } - , {nil, "xcode_sdkver", "kv", "auto", "The SDK Version for Xcode" } - , {nil, "target_minver", "kv", "auto", "The Target Minimal Version" } - , {category = "Cuda SDK Configuration" } - , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } - , {category = "Qt SDK Configuration" } - , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } - , {nil, "qt_sdkver", "kv", "auto", "The Qt SDK Version" } + {category = "XCode SDK Configuration" } + , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + , {nil, "xcode_sdkver", "kv", "auto", "The SDK Version for Xcode" } + , {nil, "xcode_codesign_identity", "kv", "auto", "The Codesign Identity for Xcode" } + , {nil, "target_minver", "kv", "auto", "The Target Minimal Version" } + , {category = "Cuda SDK Configuration" } + , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } + , {category = "Qt SDK Configuration" } + , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } + , {nil, "qt_sdkver", "kv", "auto", "The Qt SDK Version" } } , global = { - {category = "XCode SDK Configuration" } - , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } - , {category = "Cuda SDK Configuration" } - , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } - , {category = "Qt SDK Configuration" } - , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } + {category = "XCode SDK Configuration" } + , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + , {nil, "xcode_codesign_identity", "kv", "auto", "The Codesign Identity for Xcode" } + , {category = "Cuda SDK Configuration" } + , {nil, "cuda", "kv", "auto", "The Cuda SDK Directory" } + , {category = "Qt SDK Configuration" } + , {nil, "qt", "kv", "auto", "The Qt SDK Directory" } } } diff --git a/xmake/platforms/watchos/xmake.lua b/xmake/platforms/watchos/xmake.lua index 3922f7d84..955a5077b 100644 --- a/xmake/platforms/watchos/xmake.lua +++ b/xmake/platforms/watchos/xmake.lua @@ -46,16 +46,18 @@ platform("watchos") set_menu { config = { - {category = "XCode SDK Configuration" } - , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } - , {nil, "xcode_sdkver", "kv", "auto", "The SDK Version for Xcode" } - , {nil, "target_minver", "kv", "auto", "The Target Minimal Version" } + {category = "XCode SDK Configuration" } + , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + , {nil, "xcode_sdkver", "kv", "auto", "The SDK Version for Xcode" } + , {nil, "xcode_codesign_identity", "kv", "auto", "The Codesign Identity for Xcode" } + , {nil, "target_minver", "kv", "auto", "The Target Minimal Version" } } , global = { - {category = "XCode SDK Configuration" } - , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + {category = "XCode SDK Configuration" } + , {nil, "xcode", "kv", "auto", "The Xcode Application Directory" } + , {nil, "xcode_codesign_identity", "kv", "auto", "The Codesign Identity for Xcode" } } } |
