diff options
author | Roman Wüger <office@wueger.at> | 2017-01-15 00:29:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-02-04 13:07:48 (GMT) |
commit | 48aad9cda099005f5f58a7e83d604877f6f84c6d (patch) | |
tree | 1e0981a7fd5edadbbb0e7ddc54defb196d689098 /Modules | |
parent | 6286d26ca6408cfc45031536ed54b1679e6d5ac2 (diff) | |
download | CMake-48aad9cda099005f5f58a7e83d604877f6f84c6d.zip CMake-48aad9cda099005f5f58a7e83d604877f6f84c6d.tar.gz CMake-48aad9cda099005f5f58a7e83d604877f6f84c6d.tar.bz2 |
CPackProductBuild: Add options to sign packages
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CPackProductBuild.cmake | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Modules/CPackProductBuild.cmake b/Modules/CPackProductBuild.cmake index ea2fa7c..d545d3e 100644 --- a/Modules/CPackProductBuild.cmake +++ b/Modules/CPackProductBuild.cmake @@ -20,9 +20,29 @@ # the automatically detected command (or specify its location if the # auto-detection fails to find it.) # +# .. variable:: CPACK_PRODUCTBUILD_IDENTITY_NAME +# +# Adds a digital signature to the resulting package. +# +# +# .. variable:: CPACK_PRODUCTBUILD_KEYCHAIN_PATH +# +# Specify a specific keychain to search for the signing identity. +# +# # .. variable:: CPACK_COMMAND_PKGBUILD # # Path to the pkgbuild(1) command used to generate an OS X component package # on OS X. This variable can be used to override the automatically detected # command (or specify its location if the auto-detection fails to find it.) # +# +# .. variable:: CPACK_PKGBUILD_IDENTITY_NAME +# +# Adds a digital signature to the resulting package. +# +# +# .. variable:: CPACK_PKGBUILD_KEYCHAIN_PATH +# +# Specify a specific keychain to search for the signing identity. +# |