summaryrefslogtreecommitdiffstats
path: root/Modules/CPackWIX.cmake
diff options
context:
space:
mode:
authorNils Gladitz <nilsgladitz@gmail.com>2013-11-10 18:48:29 (GMT)
committerBrad King <brad.king@kitware.com>2013-11-12 19:10:01 (GMT)
commit096591b96a0fb8cac2b330bc727c96ff90fa8d97 (patch)
treea20ac4716e35fc2a9c07284d09af810ed8c352cc /Modules/CPackWIX.cmake
parent6f2ec6450429661356e7153a59b4c6cae5d5f285 (diff)
downloadCMake-096591b96a0fb8cac2b330bc727c96ff90fa8d97.zip
CMake-096591b96a0fb8cac2b330bc727c96ff90fa8d97.tar.gz
CMake-096591b96a0fb8cac2b330bc727c96ff90fa8d97.tar.bz2
CPackWiX: Add variables for custom tool extensions and flags
Diffstat (limited to 'Modules/CPackWIX.cmake')
-rw-r--r--Modules/CPackWIX.cmake24
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.