2008-02-07 19:43:20 +03:00
|
|
|
# This file is configured at cmake time, and loaded at cpack time.
|
|
|
|
# To pass variables to cpack from cmake, they must be configured
|
2012-08-13 21:42:58 +04:00
|
|
|
# in this file.
|
2008-02-07 19:43:20 +03:00
|
|
|
|
2007-10-31 06:02:43 +03:00
|
|
|
if(CPACK_GENERATOR MATCHES "NSIS")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_NSIS_INSTALL_ROOT "@CPACK_NSIS_INSTALL_ROOT@")
|
Add CPACK_NSIS_INSTALL_ROOT for CMake's own installer (#9148)
Problem with CMake 2.8.4-rc1: when you launch the NSIS exe installer
on Windows, the default install path shown to the end user is, at first,
"\CMake 2.8".
This problem started occurring when configuring CMake itself with an
older CMake, after adding CPACK_NSIS_INSTALL_ROOT to fix issue 9148.
So... it's a regression from 2.8.3.
I forgot (again) that when you add a new CPack variable, you must
add it to CMake's CMakeCPack.cmake file or else it is empty when
configured with an older CMake. And on Windows, without a bootstrap
build available, the releases are always configured with an older
version of CMake. This may be the last time this has bitten me,
though, because it is now burned into my brain that problems with
CMake's installer itself are inevitably associated with adding new
CPack variables.
In addition to adding a definition for CPACK_NSIS_INSTALL_ROOT,
I've gone ahead and made it differ for the 32- and 64-bit builds
of CMake to give the end user the expected default value for the
Program Files folder for each one.
And, since I was adding a new 32/64 differentiator anyhow, I made
the "NSIS package name" and "installer registry key base" different
for 64-bit builds, too, by appending " (Win64)" to each one.
These address the concerns mentioned in 9148's related issue:
http://public.kitware.com/Bug/view.php?id=9094 (at least as far
as CMake's installer is concerned). 9094 could still use a good
general fix for all projects, though, and remains open for now.
2011-01-13 23:36:45 +03:00
|
|
|
|
2007-10-31 06:02:43 +03:00
|
|
|
# set the install/unistall icon used for the installer itself
|
Add CPACK_NSIS_INSTALL_ROOT for CMake's own installer (#9148)
Problem with CMake 2.8.4-rc1: when you launch the NSIS exe installer
on Windows, the default install path shown to the end user is, at first,
"\CMake 2.8".
This problem started occurring when configuring CMake itself with an
older CMake, after adding CPACK_NSIS_INSTALL_ROOT to fix issue 9148.
So... it's a regression from 2.8.3.
I forgot (again) that when you add a new CPack variable, you must
add it to CMake's CMakeCPack.cmake file or else it is empty when
configured with an older CMake. And on Windows, without a bootstrap
build available, the releases are always configured with an older
version of CMake. This may be the last time this has bitten me,
though, because it is now burned into my brain that problems with
CMake's installer itself are inevitably associated with adding new
CPack variables.
In addition to adding a definition for CPACK_NSIS_INSTALL_ROOT,
I've gone ahead and made it differ for the 32- and 64-bit builds
of CMake to give the end user the expected default value for the
Program Files folder for each one.
And, since I was adding a new 32/64 differentiator anyhow, I made
the "NSIS package name" and "installer registry key base" different
for 64-bit builds, too, by appending " (Win64)" to each one.
These address the concerns mentioned in 9148's related issue:
http://public.kitware.com/Bug/view.php?id=9094 (at least as far
as CMake's installer is concerned). 9094 could still use a good
general fix for all projects, though, and remains open for now.
2011-01-13 23:36:45 +03:00
|
|
|
# There is a bug in NSI that does not handle full unix paths properly.
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_NSIS_MUI_ICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeLogo.ico")
|
|
|
|
set(CPACK_NSIS_MUI_UNIICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeLogo.ico")
|
2007-10-31 06:02:43 +03:00
|
|
|
# set the package header icon for MUI
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_PACKAGE_ICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeInstall.bmp")
|
2007-10-31 06:02:43 +03:00
|
|
|
# tell cpack to create links to the doc files
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_NSIS_MENU_LINKS
|
2013-11-12 23:36:45 +04:00
|
|
|
"@CMAKE_DOC_DIR@/html/index.html" "CMake Documentation"
|
2015-09-25 22:44:12 +03:00
|
|
|
"https://cmake.org" "CMake Web Site"
|
2007-10-31 06:02:43 +03:00
|
|
|
)
|
Add CPACK_NSIS_INSTALL_ROOT for CMake's own installer (#9148)
Problem with CMake 2.8.4-rc1: when you launch the NSIS exe installer
on Windows, the default install path shown to the end user is, at first,
"\CMake 2.8".
This problem started occurring when configuring CMake itself with an
older CMake, after adding CPACK_NSIS_INSTALL_ROOT to fix issue 9148.
So... it's a regression from 2.8.3.
I forgot (again) that when you add a new CPack variable, you must
add it to CMake's CMakeCPack.cmake file or else it is empty when
configured with an older CMake. And on Windows, without a bootstrap
build available, the releases are always configured with an older
version of CMake. This may be the last time this has bitten me,
though, because it is now burned into my brain that problems with
CMake's installer itself are inevitably associated with adding new
CPack variables.
In addition to adding a definition for CPACK_NSIS_INSTALL_ROOT,
I've gone ahead and made it differ for the 32- and 64-bit builds
of CMake to give the end user the expected default value for the
Program Files folder for each one.
And, since I was adding a new 32/64 differentiator anyhow, I made
the "NSIS package name" and "installer registry key base" different
for 64-bit builds, too, by appending " (Win64)" to each one.
These address the concerns mentioned in 9148's related issue:
http://public.kitware.com/Bug/view.php?id=9094 (at least as far
as CMake's installer is concerned). 9094 could still use a good
general fix for all projects, though, and remains open for now.
2011-01-13 23:36:45 +03:00
|
|
|
# Use the icon from cmake-gui for add-remove programs
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\cmake-gui.exe")
|
2009-09-25 19:26:28 +04:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_NSIS_PACKAGE_NAME "@CPACK_NSIS_PACKAGE_NAME@")
|
|
|
|
set(CPACK_NSIS_DISPLAY_NAME "@CPACK_NSIS_PACKAGE_NAME@, a cross-platform, open-source build system")
|
2015-09-25 22:44:12 +03:00
|
|
|
set(CPACK_NSIS_HELP_LINK "https://cmake.org")
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_NSIS_URL_INFO_ABOUT "http://www.kitware.com")
|
|
|
|
set(CPACK_NSIS_CONTACT @CPACK_PACKAGE_CONTACT@)
|
|
|
|
set(CPACK_NSIS_MODIFY_PATH ON)
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2009-07-20 20:08:34 +04:00
|
|
|
|
2012-11-07 20:13:09 +04:00
|
|
|
# include the cpack options for qt dialog if they exist
|
2008-03-13 04:54:27 +03:00
|
|
|
# they might not if qt was not enabled for the build
|
2012-08-13 21:47:32 +04:00
|
|
|
include("@QT_DIALOG_CPACK_OPTIONS_FILE@" OPTIONAL)
|
2007-10-31 19:55:04 +03:00
|
|
|
|
2014-07-23 11:01:59 +04:00
|
|
|
if(CPACK_GENERATOR MATCHES "IFW")
|
2015-07-03 12:58:22 +03:00
|
|
|
|
2014-07-29 01:58:37 +04:00
|
|
|
# Installer configuration
|
|
|
|
set(CPACK_IFW_PACKAGE_TITLE "CMake Build Tool")
|
2015-09-25 22:44:12 +03:00
|
|
|
set(CPACK_IFW_PRODUCT_URL "https://cmake.org")
|
2014-07-29 01:58:37 +04:00
|
|
|
@_CPACK_IFW_PACKAGE_ICON@
|
2014-08-12 22:44:02 +04:00
|
|
|
set(CPACK_IFW_PACKAGE_WINDOW_ICON
|
|
|
|
"@CMake_SOURCE_DIR@/Source/QtDialog/CMakeSetup128.png")
|
2015-04-29 12:54:20 +03:00
|
|
|
set(CPACK_IFW_PACKAGE_CONTROL_SCRIPT
|
|
|
|
"@CMake_SOURCE_DIR@/Source/QtIFW/controlscript.qs")
|
2015-07-03 12:58:22 +03:00
|
|
|
|
2015-04-29 12:54:20 +03:00
|
|
|
# Uninstaller configuration
|
|
|
|
set(CPACK_IFW_PACKAGE_MAINTENANCE_TOOL_NAME "cmake-maintenance")
|
2015-07-03 12:58:22 +03:00
|
|
|
@_CPACK_IFW_COMPONENTS_CONFIGURATION@
|
2014-12-07 21:25:28 +03:00
|
|
|
# Unspecified
|
|
|
|
set(CPACK_IFW_COMPONENT_@_CPACK_IFW_COMPONENT_UNSPECIFIED_UNAME@_VERSION
|
|
|
|
"@_CPACK_IFW_PACKAGE_VERSION@")
|
2015-07-03 12:58:22 +03:00
|
|
|
|
|
|
|
# Package configuration group
|
|
|
|
set(CPACK_IFW_PACKAGE_GROUP CMake)
|
|
|
|
|
2014-08-12 22:44:02 +04:00
|
|
|
# Group configuration
|
2015-07-03 12:58:22 +03:00
|
|
|
|
|
|
|
# CMake
|
2014-08-12 22:44:02 +04:00
|
|
|
set(CPACK_COMPONENT_GROUP_CMAKE_DISPLAY_NAME
|
|
|
|
"@CPACK_PACKAGE_NAME@")
|
|
|
|
set(CPACK_COMPONENT_GROUP_CMAKE_DESCRIPTION
|
|
|
|
"@CPACK_PACKAGE_DESCRIPTION_SUMMARY@")
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_CMAKE_VERSION
|
|
|
|
"@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_CMAKE_LICENSES
|
2015-07-03 14:50:27 +03:00
|
|
|
"@CPACK_PACKAGE_NAME@ Copyright" "@CPACK_RESOURCE_FILE_LICENSE@"
|
|
|
|
@_CPACK_IFW_ADDITIONAL_LICENSES@)
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_CMAKE_SCRIPT "@_CPACK_IFW_PACKAGE_SCRIPT@")
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_CMAKE_PRIORITY 100)
|
|
|
|
|
|
|
|
# Tools
|
|
|
|
set(CPACK_COMPONENT_GROUP_TOOLS_DISPLAY_NAME "Command-Line Tools")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_GROUP_TOOLS_DESCRIPTION
|
|
|
|
"Command-Line Tools: cmake, ctest and cpack")
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_COMPONENT_GROUP_TOOLS_PARENT_GROUP CMake)
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_TOOLS_PRIORITY 90)
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_TOOLS_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
|
|
|
set(CPACK_COMPONENT_CMAKE_DISPLAY_NAME "cmake")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_CMAKE_DESCRIPTION
|
|
|
|
"The \"cmake\" executable is the CMake command-line interface")
|
|
|
|
set(CPACK_COMPONENT_CMAKE_REQUIRED TRUE)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_COMPONENT_CMAKE_GROUP Tools)
|
|
|
|
set(CPACK_IFW_COMPONENT_CMAKE_NAME "CMake")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_CMAKE_PRIORITY 89)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_CMAKE_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
|
|
|
set(CPACK_COMPONENT_CTEST_DISPLAY_NAME "ctest")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_CTEST_DESCRIPTION
|
|
|
|
"The \"ctest\" executable is the CMake test driver program")
|
|
|
|
set(CPACK_COMPONENT_CTEST_REQUIRED TRUE)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_COMPONENT_CTEST_GROUP Tools)
|
|
|
|
set(CPACK_IFW_COMPONENT_CTEST_NAME "CTest")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_CTEST_PRIORITY 88)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_CTEST_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
|
|
|
set(CPACK_COMPONENT_CPACK_DISPLAY_NAME "cpack")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_CPACK_DESCRIPTION
|
|
|
|
"The \"cpack\" executable is the CMake packaging program")
|
|
|
|
set(CPACK_COMPONENT_CPACK_REQUIRED TRUE)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_COMPONENT_CPACK_GROUP Tools)
|
|
|
|
set(CPACK_IFW_COMPONENT_CPACK_NAME "CPack")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_CPACK_PRIORITY 87)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_CPACK_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
2015-07-07 09:28:25 +03:00
|
|
|
set(CPACK_COMPONENT_CMAKEXBUILD_DISPLAY_NAME "cmakexbuild")
|
|
|
|
set(CPACK_COMPONENT_CMAKEXBUILD_DESCRIPTION
|
|
|
|
"The \"cmakexbuild\" executable is a wrapper program for \"xcodebuild\"")
|
|
|
|
set(CPACK_COMPONENT_CMAKEXBUILD_REQUIRED TRUE)
|
|
|
|
set(CPACK_COMPONENT_CMAKEXBUILD_GROUP Tools)
|
|
|
|
set(CPACK_IFW_COMPONENT_CMAKEXBUILD_NAME "CMakeXBuild")
|
|
|
|
set(CPACK_IFW_COMPONENT_CMAKEXBUILD_PRIORITY 86)
|
|
|
|
set(CPACK_IFW_COMPONENT_CMAKEXBUILD_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
2014-12-07 21:25:28 +03:00
|
|
|
# Dialogs
|
|
|
|
set(CPACK_COMPONENT_GROUP_DIALOGS_DISPLAY_NAME "Interactive Dialogs")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_GROUP_DIALOGS_DESCRIPTION
|
|
|
|
"Interactive Dialogs with Console and GUI interfaces")
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_COMPONENT_GROUP_DIALOGS_PARENT_GROUP CMake)
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_DIALOGS_PRIORITY 80)
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_DIALOGS_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
|
|
|
set(CPACK_COMPONENT_CMAKE-GUI_DISPLAY_NAME "cmake-gui")
|
|
|
|
set(CPACK_COMPONENT_CMAKE-GUI_GROUP Dialogs)
|
|
|
|
set(CPACK_IFW_COMPONENT_CMAKE-GUI_NAME "QtGUI")
|
|
|
|
set(CPACK_IFW_COMPONENT_CMAKE-GUI_SCRIPT
|
|
|
|
"@CMake_SOURCE_DIR@/Source/QtIFW/CMake.Dialogs.QtGUI.qs")
|
|
|
|
set(CPACK_IFW_COMPONENT_CMAKE-GUI_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
2015-07-03 14:50:27 +03:00
|
|
|
@_CPACK_IFW_COMPONENT_CMAKE-GUI_LICENSES@
|
2014-12-07 21:25:28 +03:00
|
|
|
|
|
|
|
set(CPACK_COMPONENT_CCMAKE_DISPLAY_NAME "ccmake")
|
|
|
|
set(CPACK_COMPONENT_CCMAKE_GROUP Dialogs)
|
|
|
|
set(CPACK_IFW_COMPONENT_CCMAKE_NAME "CursesGUI")
|
|
|
|
set(CPACK_IFW_COMPONENT_CCMAKE_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
|
|
|
# Documentation
|
|
|
|
set(CPACK_COMPONENT_GROUP_DOCUMENTATION_DISPLAY_NAME "Documentation")
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_GROUP_DOCUMENTATION_DESCRIPTION
|
|
|
|
"CMake Documentation in different formats (html, man, qch)")
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_COMPONENT_GROUP_DOCUMENTATION_PARENT_GROUP CMake)
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_DOCUMENTATION_PRIORITY 60)
|
|
|
|
set(CPACK_IFW_COMPONENT_GROUP_DOCUMENTATION_VERSION
|
|
|
|
"@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
2014-12-10 01:13:42 +03:00
|
|
|
set(CPACK_COMPONENT_SPHINX-MAN_DISPLAY_NAME "man")
|
|
|
|
set(CPACK_COMPONENT_SPHINX-MAN_GROUP Documentation)
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_SPHINX-MAN_DISABLED TRUE)
|
2014-12-10 01:13:42 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-MAN_NAME "SphinxMan")
|
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-MAN_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_COMPONENT_SPHINX-HTML_DISPLAY_NAME "HTML")
|
|
|
|
set(CPACK_COMPONENT_SPHINX-HTML_GROUP Documentation)
|
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-HTML_NAME "SphinxHTML")
|
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-HTML_SCRIPT
|
|
|
|
"@CMake_BINARY_DIR@/CMake.Documentation.SphinxHTML.qs")
|
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-HTML_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
|
|
|
set(CPACK_COMPONENT_SPHINX-SINGLEHTML_DISPLAY_NAME "Single HTML")
|
|
|
|
set(CPACK_COMPONENT_SPHINX-SINGLEHTML_GROUP Documentation)
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_SPHINX-SINGLEHTML_DISABLED TRUE)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-SINGLEHTML_NAME "SphinxSingleHTML")
|
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-SINGLEHTML_VERSION
|
|
|
|
"@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
|
|
|
set(CPACK_COMPONENT_SPHINX-QTHELP_DISPLAY_NAME "Qt Compressed Help")
|
|
|
|
set(CPACK_COMPONENT_SPHINX-QTHELP_GROUP Documentation)
|
2015-07-03 12:58:22 +03:00
|
|
|
set(CPACK_COMPONENT_SPHINX-QTHELP_DISABLED TRUE)
|
2014-12-07 21:25:28 +03:00
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-QTHELP_NAME "SphinxQtHelp")
|
|
|
|
set(CPACK_IFW_COMPONENT_SPHINX-QTHELP_VERSION "@_CPACK_IFW_PACKAGE_VERSION@")
|
|
|
|
|
2014-07-23 11:01:59 +04:00
|
|
|
endif()
|
|
|
|
|
2007-10-31 19:55:04 +03:00
|
|
|
if(CPACK_GENERATOR MATCHES "CygwinSource")
|
|
|
|
# when packaging source make sure the .build directory is not included
|
2012-08-13 21:47:32 +04:00
|
|
|
set(CPACK_SOURCE_IGNORE_FILES
|
2007-10-31 19:55:04 +03:00
|
|
|
"/CVS/" "/\\.build/" "/\\.svn/" "\\.swp$" "\\.#" "/#" "~$")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
2007-12-27 00:57:13 +03:00
|
|
|
|
|
|
|
if("${CPACK_GENERATOR}" STREQUAL "PackageMaker")
|
2012-08-13 21:42:58 +04:00
|
|
|
if(CMAKE_PACKAGE_QTGUI)
|
2008-02-18 23:50:37 +03:00
|
|
|
set(CPACK_PACKAGE_DEFAULT_LOCATION "/Applications")
|
2012-08-13 21:50:14 +04:00
|
|
|
else()
|
2008-02-18 23:50:37 +03:00
|
|
|
set(CPACK_PACKAGE_DEFAULT_LOCATION "/usr")
|
2012-08-13 21:50:14 +04:00
|
|
|
endif()
|
|
|
|
endif()
|
2012-10-03 18:08:49 +04:00
|
|
|
|
|
|
|
if("${CPACK_GENERATOR}" STREQUAL "WIX")
|
|
|
|
# Reset CPACK_PACKAGE_VERSION to deal with WiX restriction.
|
|
|
|
# But the file names still use the full CMake_VERSION value:
|
|
|
|
set(CPACK_PACKAGE_FILE_NAME
|
|
|
|
"${CPACK_PACKAGE_NAME}-@CMake_VERSION@-${CPACK_SYSTEM_NAME}")
|
|
|
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME
|
|
|
|
"${CPACK_PACKAGE_NAME}-@CMake_VERSION@-Source")
|
|
|
|
|
|
|
|
if(NOT CPACK_WIX_SIZEOF_VOID_P)
|
|
|
|
set(CPACK_WIX_SIZEOF_VOID_P "@CMAKE_SIZEOF_VOID_P@")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(CPACK_PACKAGE_VERSION
|
2014-02-19 18:15:42 +04:00
|
|
|
"@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@")
|
2012-10-03 18:08:49 +04:00
|
|
|
# WIX installers require at most a 4 component version number, where
|
|
|
|
# each component is an integer between 0 and 65534 inclusive
|
2014-02-19 18:15:42 +04:00
|
|
|
set(patch "@CMake_VERSION_PATCH@")
|
|
|
|
if(patch MATCHES "^[0-9]+$" AND patch LESS 65535)
|
|
|
|
set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION}.${patch}")
|
2012-10-03 18:08:49 +04:00
|
|
|
endif()
|
2015-02-22 17:20:33 +03:00
|
|
|
|
2015-09-25 22:44:12 +03:00
|
|
|
set(CPACK_WIX_PROPERTY_ARPURLINFOABOUT "https://cmake.org")
|
2015-02-22 17:20:33 +03:00
|
|
|
|
|
|
|
set(CPACK_WIX_PROPERTY_ARPCONTACT "@CPACK_PACKAGE_CONTACT@")
|
|
|
|
|
|
|
|
set(CPACK_WIX_PROPERTY_ARPCOMMENTS
|
|
|
|
"CMake is a cross-platform, open-source build system."
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CPACK_WIX_PRODUCT_ICON
|
|
|
|
"@CMake_SOURCE_DIR@/Utilities/Release/CMakeLogo.ico"
|
|
|
|
)
|
|
|
|
|
|
|
|
set_property(INSTALL "@CMAKE_DOC_DIR@/html/index.html" PROPERTY
|
|
|
|
CPACK_START_MENU_SHORTCUTS "CMake Documentation"
|
|
|
|
)
|
|
|
|
|
|
|
|
set_property(INSTALL "cmake.org.html" PROPERTY
|
|
|
|
CPACK_START_MENU_SHORTCUTS "CMake Web Site"
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CPACK_WIX_LIGHT_EXTRA_FLAGS "-dcl:high")
|
2015-03-12 22:44:27 +03:00
|
|
|
|
|
|
|
set(CPACK_WIX_UI_BANNER
|
|
|
|
"@CMake_SOURCE_DIR@/Utilities/Release/cpack_wix_ui_banner.jpg"
|
|
|
|
)
|
|
|
|
|
|
|
|
set(CPACK_WIX_UI_DIALOG
|
|
|
|
"@CMake_SOURCE_DIR@/Utilities/Release/cpack_wix_ui_dialog.jpg"
|
|
|
|
)
|
2012-10-03 18:08:49 +04:00
|
|
|
endif()
|