summaryrefslogtreecommitdiff
path: root/CMakeCPackOptions.cmake.in
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-10-31 12:55:04 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2007-10-31 12:55:04 -0400
commite65c40f94a15f5e70695bd5c08444fc42262940c (patch)
treef3ef20ff363eec1b200c7373ddd21c9a70cffcb3 /CMakeCPackOptions.cmake.in
parentfb621feefcfddffa27ec429bab85ff5a711e075d (diff)
downloadcmake-e65c40f94a15f5e70695bd5c08444fc42262940c.tar.gz
ENH: add CPACK_PROJECT_CONFIG_FILE option to CPack
Diffstat (limited to 'CMakeCPackOptions.cmake.in')
-rw-r--r--CMakeCPackOptions.cmake.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/CMakeCPackOptions.cmake.in b/CMakeCPackOptions.cmake.in
new file mode 100644
index 0000000000..f1be2e87ed
--- /dev/null
+++ b/CMakeCPackOptions.cmake.in
@@ -0,0 +1,36 @@
+if(CPACK_GENERATOR MATCHES "NSIS")
+ # set the install/unistall icon used for the installer itself
+ # There is a bug in NSI that does not handle full unix paths properly.
+ SET(CPACK_NSIS_MUI_ICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeLogo.ico")
+ SET(CPACK_NSIS_MUI_UNIICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeLogo.ico")
+ # set the package header icon for MUI
+ SET(CPACK_PACKAGE_ICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeInstall.bmp")
+ # tell cpack to create links to the doc files
+ SET(CPACK_NSIS_MENU_LINKS
+ "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/CMakeSetup.html" "CMakeSetup Help"
+ "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake.html" "CMake Help"
+ "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-properties.html"
+ "CMake Properties and Variables Help"
+ "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/ctest.html" "CTest Help"
+ "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-modules.html" "CMake Modules Help"
+ "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-commands.html" "CMake Commands Help"
+ "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cpack.html" "CPack Help"
+ "http://www.cmake.org" "CMake Web Site"
+ )
+ # 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_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")
+ SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\www.kitware.com")
+ SET(CPACK_NSIS_CONTACT @CPACK_PACKAGE_CONTACT@)
+ SET(CPACK_NSIS_MODIFY_PATH ON)
+endif(CPACK_GENERATOR MATCHES "NSIS")
+
+if(CPACK_GENERATOR MATCHES "CygwinSource")
+ # when packaging source make sure the .build directory is not included
+ SET(CPACK_SOURCE_IGNORE_FILES
+ "/CVS/" "/\\.build/" "/\\.svn/" "\\.swp$" "\\.#" "/#" "~$")
+endif(CPACK_GENERATOR MATCHES "CygwinSource")