Disable code signing by default on the Mac

This has caused too much pain for other packagers.
This commit is contained in:
ridiculousfish 2020-07-31 12:11:20 -07:00
parent 1c2323e76f
commit d823eee339

View file

@ -1,8 +1,9 @@
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version")
# Code signing ID on Mac. A default '-' is ad-hoc codesign.
# Code signing ID on Mac.
# If this is falsey, codesigning is disabled.
set(MAC_CODESIGN_ID "-" CACHE STRING "Mac code-signing identity")
# '-' is ad-hoc codesign.
set(MAC_CODESIGN_ID "" CACHE STRING "Mac code-signing identity")
# Whether to inject the "get-task-allow" entitlement, which permits debugging
# on the Mac.