~ubuntu-branches/ubuntu/lucid/cmake/lucid

« back to all changes in this revision

Viewing changes to CMakeCPackOptions.cmake.in

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2009-12-16 11:11:54 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091216111154-6accvv6yq86h2hkc
Tags: 2.8.0-5ubuntu1
* Merge from debian testing (LP: #497349). Remaining changes:
  - Keep the Replaces: on cmake-data to cover the Kubuntu version from
    Jaunty in case someone decides to do an (unsupported) Jaunty->Lucid
    upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/ctest.html" "CTest Help"
19
19
    "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-modules.html" "CMake Modules Help"
20
20
    "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-commands.html" "CMake Commands Help"
21
 
    "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/CMakeSetup.html" "CMakeSetup Help"
22
21
    "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cpack.html" "CPack Help"
23
22
    "http://www.cmake.org" "CMake Web Site"
24
23
    )
25
 
  # tell cpack the executables you want in the start menu as links
26
 
  SET(CPACK_PACKAGE_EXECUTABLES "CMakeSetup" "CMakeSetup(deprecated)" )
27
 
  # tell cpack to create a desktop link to CMakeSetup
28
 
  SET(CPACK_CREATE_DESKTOP_LINKS "CMakeSetup")
29
 
  SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\CMakeSetup.exe")
 
24
  # Use the icond from cmake-gui for add-remove programs
 
25
  SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\cmake-gui.exe")
 
26
 
30
27
  SET(CPACK_NSIS_DISPLAY_NAME "CMake @CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@ a cross-platform, open-source build system")
31
 
  SET(CPACK_NSIS_HELP_LINK "http:\\\\www.cmake.org")
32
 
  SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\www.kitware.com")
 
28
  SET(CPACK_NSIS_PACKAGE_NAME "CMake @CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@")
 
29
  SET(CPACK_NSIS_HELP_LINK "http://www.cmake.org")
 
30
  SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.kitware.com")
33
31
  SET(CPACK_NSIS_CONTACT @CPACK_PACKAGE_CONTACT@)
34
32
  SET(CPACK_NSIS_MODIFY_PATH ON)
35
33
endif(CPACK_GENERATOR MATCHES "NSIS")
 
34
 
36
35
# include the cpack options for qt dialog if they exisit
37
36
# they might not if qt was not enabled for the build
38
37
INCLUDE("@QT_DIALOG_CPACK_OPTIONS_FILE@" OPTIONAL)