diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2016-07-20 13:27:01 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2016-08-02 12:05:08 (GMT) |
commit | e29bfbf272dbf4ea5f6a89084ec1f503fcf0e4f7 (patch) | |
tree | df3878276790571e93f330ca5dcf9ffbfa8e8f0c /Modules/CPackWIX.cmake | |
parent | 55d9bfa9dd42912432eea3297507187084a7d154 (diff) | |
download | CMake-e29bfbf272dbf4ea5f6a89084ec1f503fcf0e4f7.zip CMake-e29bfbf272dbf4ea5f6a89084ec1f503fcf0e4f7.tar.gz CMake-e29bfbf272dbf4ea5f6a89084ec1f503fcf0e4f7.tar.bz2 |
CPackWIX: Support custom title and description for the root feature
These can now be specified through the WIX generator specific
CPack variables CPACK_WIX_ROOT_FEATURE_TITLE and
CPACK_WIX_ROOT_FEATURE_DESCRIPTION.
Diffstat (limited to 'Modules/CPackWIX.cmake')
-rw-r--r-- | Modules/CPackWIX.cmake | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Modules/CPackWIX.cmake b/Modules/CPackWIX.cmake index 3c90561..10926c0 100644 --- a/Modules/CPackWIX.cmake +++ b/Modules/CPackWIX.cmake @@ -237,6 +237,17 @@ # * ARPURLUPDATEINFO - Update information URL # * ARPHELPTELEPHONE - Help and support telephone number # * ARPSIZE - Size (in kilobytes) of the application +# +# .. variable:: CPACK_WIX_ROOT_FEATURE_TITLE +# +# Sets the name of the root install feature in the WIX installer. Same as +# CPACK_COMPONENT_<compName>_DISPLAY_NAME for components. +# +# .. variable:: CPACK_WIX_ROOT_FEATURE_DESCRIPTION +# +# Sets the description of the root install feature in the WIX installer. Same as +# CPACK_COMPONENT_<compName>_DESCRIPTION for components. +# #============================================================================= # Copyright 2014-2015 Kitware, Inc. |