CPackNSIS.cmake 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # - CPack NSIS generator specific options
  2. #
  3. # The following variables are specific to the graphical installers built
  4. # on Windows using the Nullsoft Installation System.
  5. #
  6. # CPACK_PACKAGE_INSTALL_REGISTRY_KEY - Registry key used when
  7. # installing this project.
  8. #
  9. # CPACK_NSIS_INSTALL_ROOT - The default installation directory presented
  10. # to the end user by the NSIS installer is under this root dir. The full
  11. # directory presented to the end user is:
  12. # ${CPACK_NSIS_INSTALL_ROOT}/${CPACK_PACKAGE_INSTALL_DIRECTORY}
  13. #
  14. # CPACK_NSIS_MUI_ICON - The icon file (.ico) for the generated
  15. # install program.
  16. #
  17. # CPACK_NSIS_MUI_UNIICON - The icon file (.ico) for the generated
  18. # uninstall program.
  19. #
  20. # CPACK_PACKAGE_ICON - A branding image that will be displayed inside
  21. # the installer.
  22. #
  23. # CPACK_NSIS_EXTRA_INSTALL_COMMANDS - Extra NSIS commands that will
  24. # be added to the install Section.
  25. #
  26. # CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS - Extra NSIS commands that will
  27. # be added to the uninstall Section.
  28. #
  29. # CPACK_NSIS_COMPRESSOR - The arguments that will be passed to the
  30. # NSIS SetCompressor command.
  31. #
  32. # CPACK_NSIS_MODIFY_PATH - If this is set to "ON", then an extra page
  33. # will appear in the installer that will allow the user to choose
  34. # whether the program directory should be added to the system PATH
  35. # variable.
  36. #
  37. # CPACK_NSIS_DISPLAY_NAME - The display name string that appears in
  38. # the Windows Add/Remove Program control panel
  39. #
  40. # CPACK_NSIS_PACKAGE_NAME - The title displayed at the top of the
  41. # installer.
  42. #
  43. # CPACK_NSIS_INSTALLED_ICON_NAME - A path to the executable that
  44. # contains the installer icon.
  45. #
  46. # CPACK_NSIS_HELP_LINK - URL to a web site providing assistance in
  47. # installing your application.
  48. #
  49. # CPACK_NSIS_URL_INFO_ABOUT - URL to a web site providing more
  50. # information about your application.
  51. #
  52. # CPACK_NSIS_CONTACT - Contact information for questions and comments
  53. # about the installation process.
  54. #
  55. # CPACK_NSIS_CREATE_ICONS_EXTRA - Additional NSIS commands for
  56. # creating start menu shortcuts.
  57. #
  58. # CPACK_NSIS_DELETE_ICONS_EXTRA -Additional NSIS commands to
  59. # uninstall start menu shortcuts.
  60. #
  61. # CPACK_NSIS_EXECUTABLES_DIRECTORY - Creating NSIS start menu links
  62. # assumes that they are in 'bin' unless this variable is set.
  63. # For example, you would set this to 'exec' if your executables are
  64. # in an exec directory.
  65. #
  66. # CPACK_NSIS_MUI_FINISHPAGE_RUN - Specify an executable to add an option
  67. # to run on the finish page of the NSIS installer.
  68. #=============================================================================
  69. # Copyright 2006-2009 Kitware, Inc.
  70. #
  71. # Distributed under the OSI-approved BSD License (the "License");
  72. # see accompanying file Copyright.txt for details.
  73. #
  74. # This software is distributed WITHOUT ANY WARRANTY; without even the
  75. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  76. # See the License for more information.
  77. #=============================================================================
  78. # (To distribute this file outside of CMake, substitute the full
  79. # License text for the above reference.)
  80. #FIXME we should put NSIS specific code here
  81. #FIXME but I'm not doing it because I'm not able to test it...