summaryrefslogtreecommitdiff
path: root/Modules/CPack.cmake
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2009-07-16 11:48:30 -0400
committerDavid Cole <david.cole@kitware.com>2009-07-16 11:48:30 -0400
commit85733c17c5665df98426ab9642b2156eca8316c7 (patch)
tree16018829636b688b2a2b5259fe6ae4c843deb6c9 /Modules/CPack.cmake
parent611c120ad6d3f768d5a63f5a1d15f87ef92f8600 (diff)
downloadcmake-85733c17c5665df98426ab9642b2156eca8316c7.tar.gz
BUG: Re-fix issue #8682. Use new variable CPACK_NSIS_PACKAGE_NAME in appropriate places rather than CPACK_NSIS_DISPLAY_NAME. CPACK_NSIS_DISPLAY_NAME is the Add/Remove control panel's description string for the installed package. Using it as the "Name" of the NSIS installer package made the CMake installer itself use really long strings in the installer GUI. This fix still allows for the original intent of the first fix for #8682 -- the ability to separate the installer name from the default install directory, but it uses a new/different variable to achieve the separation.
Diffstat (limited to 'Modules/CPack.cmake')
-rw-r--r--Modules/CPack.cmake6
1 files changed, 5 insertions, 1 deletions
diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake
index cd13cbf682..0f0d88033c 100644
--- a/Modules/CPack.cmake
+++ b/Modules/CPack.cmake
@@ -136,7 +136,10 @@
# whether the program directory should be added to the system PATH
# variable.
#
-# CPACK_NSIS_DISPLAY_NAME - The title displayed at the top of the
+# CPACK_NSIS_DISPLAY_NAME - The display name string that appears in
+# the Windows Add/Remove Program control panel
+#
+# CPACK_NSIS_PACKAGE_NAME - The title displayed at the top of the
# installer.
#
# CPACK_NSIS_INSTALLED_ICON_NAME - A path to the executable that
@@ -779,6 +782,7 @@ cpack_set_if_not_set(CPACK_CMAKE_GENERATOR "${CMAKE_GENERATOR}")
cpack_set_if_not_set(CPACK_TOPLEVEL_TAG "${CPACK_SYSTEM_NAME}")
cpack_set_if_not_set(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
+cpack_set_if_not_set(CPACK_NSIS_PACKAGE_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
cpack_set_if_not_set(CPACK_OUTPUT_CONFIG_FILE
"${CMAKE_BINARY_DIR}/CPackConfig.cmake")