Always codesign app to run locally in Meson

This commit is contained in:
Struma 2020-12-25 10:31:09 -05:00 committed by Roza
parent bed287376c
commit 6e0ba12ae7

View file

@ -24,5 +24,5 @@ option('steam_appid', type: 'string', value: '', description: 'Steam AppID. Set
option('gfx_backend', type: 'combo', value: 'gl', choices: ['gl', 'gles'], description: 'Graphics rendering API to use.')
option('codesign', type: 'boolean', value: false, description: 'Whether to codesign the Mac app bundle upon creation. If codesign_identity is not set, signs for local use.')
option('codesign', type: 'boolean', value: true, description: 'Whether to codesign the Mac app bundle upon creation. If codesign_identity is not set, signs for local use.')
option('codesign_identity', type: 'string', value: '', description: 'A valid Apple Developer ID for signing Mac apps.')