diff options
author | Brad King <brad.king@kitware.com> | 2016-09-20 12:40:52 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-09-20 12:40:52 (GMT) |
commit | 9dc5bd961146332644880e2b949854e13dbd0b8c (patch) | |
tree | 092bbd1d8d1c7c4f0f8caf28bb2f9704ecb2afab /Modules | |
parent | 8d83c9d100b8952ec0793e4cb0e30d5b3ec8f164 (diff) | |
parent | 1c63aa4d43f101a0d58b5b88d3119c72cadf5517 (diff) | |
download | CMake-9dc5bd961146332644880e2b949854e13dbd0b8c.zip CMake-9dc5bd961146332644880e2b949854e13dbd0b8c.tar.gz CMake-9dc5bd961146332644880e2b949854e13dbd0b8c.tar.bz2 |
Merge topic 'cpack.hash_computing'
1c63aa4d CPack: Add option to generate a checksum file next to each package file
4682b42b Tests: Add subtest support to RunCMake/CPack infrastructure
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CPack.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake index 675b38b..70ae7f7 100644 --- a/Modules/CPack.cmake +++ b/Modules/CPack.cmake @@ -116,6 +116,15 @@ # A branding image that will be displayed inside the installer (used by GUI # installers). # +# .. variable:: CPACK_PACKAGE_CHECKSUM +# +# An algorithm that will be used to generate additional file with checksum +# of the package. Output file name will be:: +# +# ${CPACK_PACKAGE_FILE_NAME}.${CPACK_PACKAGE_CHECKSUM} +# +# Current supported alogorithms: MD5|SHA1|SHA224|SHA256|SHA384|SHA512. +# # .. variable:: CPACK_PROJECT_CONFIG_FILE # # CPack-time project CPack configuration file. This file included at cpack |