Introduce "generator expressions" to add_test()
[cmake.git] / CMakeCPackOptions.cmake.in
bloba3e25040a0113e07ae4bf34ee0f9e1db1a151d42
1 # This file is configured at cmake time, and loaded at cpack time.
2 # To pass variables to cpack from cmake, they must be configured
3 # in this file.  
5 if(CPACK_GENERATOR MATCHES "NSIS")
6   # set the install/unistall icon used for the installer itself
7   # There is a bug in NSI that does not handle full unix paths properly. 
8   SET(CPACK_NSIS_MUI_ICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeLogo.ico")
9   SET(CPACK_NSIS_MUI_UNIICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeLogo.ico")
10   # set the package header icon for MUI
11   SET(CPACK_PACKAGE_ICON "@CMake_SOURCE_DIR@/Utilities/Release\\CMakeInstall.bmp")
12   # tell cpack to create links to the doc files
13   SET(CPACK_NSIS_MENU_LINKS
14     "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-gui.html" "cmake-gui Help"
15     "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake.html" "CMake Help"
16     "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-properties.html"
17     "CMake Properties and Variables Help"
18     "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/ctest.html" "CTest Help"
19     "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cmake-modules.html" "CMake Modules Help"
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     "doc/cmake-@CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@/cpack.html" "CPack Help"
23     "http://www.cmake.org" "CMake Web Site"
24     )
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_NSIS_INSTALLED_ICON_NAME "bin\\CMakeSetup.exe")
29   SET(CPACK_NSIS_DISPLAY_NAME "CMake @CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@ a cross-platform, open-source build system")
30   SET(CPACK_NSIS_PACKAGE_NAME "CMake @CMake_VERSION_MAJOR@.@CMake_VERSION_MINOR@")
31   SET(CPACK_NSIS_HELP_LINK "http://www.cmake.org")
32   SET(CPACK_NSIS_URL_INFO_ABOUT "http://www.kitware.com")
33   SET(CPACK_NSIS_CONTACT @CPACK_PACKAGE_CONTACT@)
34   SET(CPACK_NSIS_MODIFY_PATH ON)
35 endif(CPACK_GENERATOR MATCHES "NSIS")
37 # include the cpack options for qt dialog if they exisit
38 # they might not if qt was not enabled for the build
39 INCLUDE("@QT_DIALOG_CPACK_OPTIONS_FILE@" OPTIONAL)
41 if(CPACK_GENERATOR MATCHES "CygwinSource")
42   # when packaging source make sure the .build directory is not included
43     SET(CPACK_SOURCE_IGNORE_FILES
44       "/CVS/" "/\\.build/" "/\\.svn/" "\\.swp$" "\\.#" "/#" "~$")
45 endif(CPACK_GENERATOR MATCHES "CygwinSource")
47 if("${CPACK_GENERATOR}" STREQUAL "PackageMaker")
48   if(CMAKE_PACKAGE_QTGUI)                       
49     set(CPACK_PACKAGE_DEFAULT_LOCATION "/Applications")
50   else(CMAKE_PACKAGE_QTGUI)                     
51     set(CPACK_PACKAGE_DEFAULT_LOCATION "/usr")
52   endif(CMAKE_PACKAGE_QTGUI)                    
53 endif("${CPACK_GENERATOR}" STREQUAL "PackageMaker")