Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add CPACK_NSIS_INSTALL_ROOT for CMake's own installer (#9148) | David Cole | 2011-01-13 | 1 | -4/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Use cmake-gui.exe for the install/uninstall icon for cmake. | Bill Hoffman | 2009-09-25 | 1 | -0/+3 |
| | |||||
* | Remove CMakeSetup. Long live cmake-gui, start building Qt now. | Bill Hoffman | 2009-09-03 | 1 | -5/+0 |
| | |||||
* | BUG: Add CPACK_NSIS_PACKAGE_NAME to the list of CPack variables that CMake ↵ | David Cole | 2009-07-20 | 1 | -2/+4 |
| | | | | overrides. We use the same value as the CPack-provided default, but do it here such that configuring with an older CMake will still give us this new variable. Necessary so that the CMake release process works with the new variable: CMake is configured with a previous CMake, but packaged with the freshly built CPack. (This fix is necessary because the fix for issue #8682 caused the side effect of having an empty CPACK_NSIS_PACKAGE_NAME for the CMake nightly package.) | ||||
* | ENH: do not create a desktop link for CMakeSetup | Bill Hoffman | 2009-06-26 | 1 | -1/+0 |
| | |||||
* | ENH: add cmake gui docs | Bill Hoffman | 2009-02-14 | 1 | -1/+2 |
| | |||||
* | ENH: deprecate CMakeSetup | Bill Hoffman | 2009-02-13 | 1 | -1/+1 |
| | |||||
* | ENH: fix install in add/remove programs, again... | Bill Hoffman | 2008-07-01 | 1 | -1/+1 |
| | |||||
* | ENH: fix crash in cpack when CPACK_CYGWIN_PATCH_NUMBER not specified | Bill Hoffman | 2008-03-13 | 1 | -2/+3 |
| | |||||
* | ENH: install seems to be working for cmake-gui | Bill Hoffman | 2008-02-18 | 1 | -2/+5 |
| | |||||
* | ENH: make it so cmake-gui only installs if qt is static on windows | Bill Hoffman | 2008-02-09 | 1 | -6/+3 |
| | |||||
* | ENH: for windows only allow a static qt for install and NSIS of cmake-gui | Bill Hoffman | 2008-02-07 | 1 | -0/+10 |
| | |||||
* | ENH: fix add/remove program name | Bill Hoffman | 2008-01-15 | 1 | -1/+1 |
| | |||||
* | ENH: Give Mac installers package relocation capability. Default location is ↵ | David Cole | 2007-12-26 | 1 | -0/+4 |
| | | | | still the same for backwards compatibility, but packages will now be relocatable by default like they are on Windows via the NSIS installer. New CPack variables for controlling this functionality are CPACK_PACKAGE_DEFAULT_LOCATION and CPACK_PACKAGE_RELOCATABLE. | ||||
* | ENH: change CPACK_CREATE_DESKTOP_LINKS to something that can handle spaces ↵ | Bill Hoffman | 2007-11-07 | 1 | -1/+1 |
| | | | | in the name of the exectuable | ||||
* | ENH: add CPACK_PROJECT_CONFIG_FILE option to CPack | Bill Hoffman | 2007-10-31 | 1 | -0/+36 |