summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-07-22 13:48:32 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-07-22 13:48:32 (GMT)
commit29859c09afef684140e5cd0de528a5b2a7bf19e2 (patch)
tree86a3a86eb5faac40f81a2fc76a84cf7d73ab1649 /Modules
parentf53ce89d6a309f5f44630c9a9ef12d7440828cd0 (diff)
parentbf23891942d95a4075f349f6c4043647d47e546b (diff)
downloadCMake-29859c09afef684140e5cd0de528a5b2a7bf19e2.zip
CMake-29859c09afef684140e5cd0de528a5b2a7bf19e2.tar.gz
CMake-29859c09afef684140e5cd0de528a5b2a7bf19e2.tar.bz2
Merge topic 'cpack-wix'
bf23891 CPackWIX: Add support for custom WiX templates 155bb01 CMakeCPack: Provide an upgrade guid for WiX bfa2e29 CPackWIX: Add option to specify the language(s) of the installer 6e51ea9 CPackWIX: Handle multiple shortcuts in the start menu 6d77e1a CPackWIX: Fix MSI package layout regression from parent 8c0e325 CPackWIX: Handle CPACK_PACKAGE_EXECUTABLES (#13967)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CPackWIX.cmake26
1 files changed, 26 insertions, 0 deletions
diff --git a/Modules/CPackWIX.cmake b/Modules/CPackWIX.cmake
index 0c0a8f1..fce25f0 100644
--- a/Modules/CPackWIX.cmake
+++ b/Modules/CPackWIX.cmake
@@ -76,6 +76,32 @@
# This image must be 493 by 312 pixels.
#
##end
+#
+##variable
+# CPACK_WIX_PROGRAM_MENU_FOLDER - Start menu folder name for launcher.
+#
+# If this variable is not set, it will be initialized with CPACK_PACKAGE_NAME
+#
+##end
+##variable
+# CPACK_WIX_CULTURES - Language(s) of the installer
+#
+# Languages are compiled into the WixUI extension library. To use them,
+# simply provide the name of the culture. If you specify more than one
+# culture identifier in a comma or semicolon delimited list, the first one
+# that is found will be used. You can find a list of supported languages at:
+# http://wix.sourceforge.net/manual-wix3/WixUI_localization.htm
+#
+##end
+##variable
+# CPACK_WIX_TEMPLATE - Template file for WiX generation
+#
+# If this variable is set, the specified template will be used to generate the WiX wxs file.
+# This should be used if further customization of the output is required.
+#
+# If this variable is not set, the default MSI template included with CMake will be used.
+#
+##end
#=============================================================================
# Copyright 2012 Kitware, Inc.