diff options
author | Nils Gladitz <nilsgladitz@gmail.com> | 2014-03-01 22:13:35 (GMT) |
---|---|---|
committer | Nils Gladitz <nilsgladitz@gmail.com> | 2014-03-01 22:13:35 (GMT) |
commit | 378eb5b712bb8f131e62aa343e3ec27d446dc098 (patch) | |
tree | 5ca74a435df052798f9c6285486c90ba66ab8da5 /Modules | |
parent | c0afb8867518e7b7ef17d5ce90f1a99051d2fd14 (diff) | |
download | CMake-378eb5b712bb8f131e62aa343e3ec27d446dc098.zip CMake-378eb5b712bb8f131e62aa343e3ec27d446dc098.tar.gz CMake-378eb5b712bb8f131e62aa343e3ec27d446dc098.tar.bz2 |
CPackWIX: Allow Windows Installer property customization
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CPackWIX.cmake | 17 | ||||
-rw-r--r-- | Modules/WIX.template.in | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/Modules/CPackWIX.cmake b/Modules/CPackWIX.cmake index 39183c6..0a47e19 100644 --- a/Modules/CPackWIX.cmake +++ b/Modules/CPackWIX.cmake @@ -216,9 +216,24 @@ # allow other CMake projects to find your package with # the :command:`find_package` command. # +# .. variable:: CPACK_WIX_PROPERTY_<PROPERTY> +# +# This variable can be used to provide a value for +# the Windows Installer property ``<PROPERTY>`` +# +# The follwing list contains some example properties that can be used to +# customize information under +# "Programs and Features" (also known as "Add or Remove Programs") +# +# * ARPCOMMENTS - Comments +# * ARPHELPLINK - Help and support information URL +# * ARPURLINFOABOUT - General information URL +# * URLUPDATEINFO - Update information URL +# * ARPHELPTELEPHONE - Help and support telephone number +# * ARPSIZE - Size (in kilobytes) of the application #============================================================================= -# Copyright 2013 Kitware, Inc. +# Copyright 2014 Kitware, Inc. # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. diff --git a/Modules/WIX.template.in b/Modules/WIX.template.in index 59a75c7..bbb7c88 100644 --- a/Modules/WIX.template.in +++ b/Modules/WIX.template.in @@ -40,5 +40,7 @@ <FeatureRef Id="ProductFeature"/> <UIRef Id="$(var.CPACK_WIX_UI_REF)" /> + + <?include "properties.wxi"?> </Product> </Wix> |