diff options
author | Brad King <brad.king@kitware.com> | 2013-11-13 14:56:30 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-11-13 14:56:30 (GMT) |
commit | 3822f5bcacf5076d8c1832e2dae57b47c1247f56 (patch) | |
tree | cb9dd15fc3607e8f21fed8b5ea31d2cec9786549 /Modules | |
parent | 11fe43422fe046d966dda8ae513b2b0af4377503 (diff) | |
parent | 096591b96a0fb8cac2b330bc727c96ff90fa8d97 (diff) | |
download | CMake-3822f5bcacf5076d8c1832e2dae57b47c1247f56.zip CMake-3822f5bcacf5076d8c1832e2dae57b47c1247f56.tar.gz CMake-3822f5bcacf5076d8c1832e2dae57b47c1247f56.tar.bz2 |
Merge topic 'wix-custom-arguments'
096591b CPackWiX: Add variables for custom tool extensions and flags
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CPackWIX.cmake | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/Modules/CPackWIX.cmake b/Modules/CPackWIX.cmake index f4fcf6a..3f0978d 100644 --- a/Modules/CPackWIX.cmake +++ b/Modules/CPackWIX.cmake @@ -123,9 +123,31 @@ # This variable provides an optional list of extra WiX object (.wixobj) # and/or WiX library (.wixlib) files. The full path to objects and libraries # is required. +# +# .. variable:: CPACK_WIX_EXTENSIONS +# +# This variable provides a list of additional extensions for the WiX +# tools light and candle. +# +# .. variable:: CPACK_WIX_<TOOL>_EXTENSIONS +# +# This is the tool specific version of CPACK_WIX_EXTENSIONS. +# ``<TOOL>`` can be either LIGHT or CANDLE. +# +# .. variable:: CPACK_WIX_<TOOL>_EXTRA_FLAGS +# +# This list variable allows you to pass additional +# flags to the WiX tool ``<TOOL>``. +# +# Use it at your own risk. +# Future versions of CPack may generate flags which may be in conflict +# with your own flags. +# +# ``<TOOL>`` can be either LIGHT or CANDLE. +# #============================================================================= -# Copyright 2012 Kitware, Inc. +# Copyright 2013 Kitware, Inc. # # Distributed under the OSI-approved BSD License (the "License"); # see accompanying file Copyright.txt for details. |