diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-07 18:11:58 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-07 18:11:58 (GMT) |
commit | 87c22309b844176df1250f37ecef418b6856ddd6 (patch) | |
tree | 51046edc7411a3d5a8ce62a92f6f9f6d758dbbab /CMakeCPackOptions.cmake.in | |
parent | c05f8aa70ed5837b75211483bddd9ae27012cd12 (diff) | |
download | CMake-87c22309b844176df1250f37ecef418b6856ddd6.zip CMake-87c22309b844176df1250f37ecef418b6856ddd6.tar.gz CMake-87c22309b844176df1250f37ecef418b6856ddd6.tar.bz2 |
ENH: change CPACK_CREATE_DESKTOP_LINKS to something that can handle spaces in the name of the exectuable
Diffstat (limited to 'CMakeCPackOptions.cmake.in')
-rw-r--r-- | CMakeCPackOptions.cmake.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeCPackOptions.cmake.in b/CMakeCPackOptions.cmake.in index f1be2e8..9175a5e 100644 --- a/CMakeCPackOptions.cmake.in +++ b/CMakeCPackOptions.cmake.in @@ -20,7 +20,7 @@ if(CPACK_GENERATOR MATCHES "NSIS") # tell cpack the executables you want in the start menu as links SET(CPACK_PACKAGE_EXECUTABLES "CMakeSetup" "CMake" ) # tell cpack to create a desktop link to CMakeSetup - SET(CPACK_CREATE_DESKTOP_LINK_CMakeSetup ON) + SET(CPACK_CREATE_DESKTOP_LINKS "CMakeSetup") SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\CMakeSetup.exe") SET(CPACK_NSIS_DISPLAY_NAME "@CPACK_PACKAGE_INSTALL_DIRECTORY@ a cross-platform, open-source build system") SET(CPACK_NSIS_HELP_LINK "http:\\\\www.cmake.org") |