mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
Instead of mutating `CMAKE_INSTALL_PREFIX`, add a `CMake.app/Contents/` prefix to install destinations besides the `cmake-gui` target itself.
28 lines
793 B
Plaintext
28 lines
793 B
Plaintext
// Component: CMake
|
|
|
|
function Component()
|
|
{
|
|
// Do not show component selection page
|
|
installer.setDefaultPageVisible(QInstaller.ComponentSelection, false);
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
// Create shortcut
|
|
if (installer.value("os") === "win") {
|
|
|
|
%_CPACK_IFW_SHORTCUT_OPTIONAL%
|
|
|
|
component.addOperation("CreateShortcut",
|
|
"@TargetDir@/%CMake_INSTALL_DOC_DIR%/cmake.org.html",
|
|
"@StartMenuDir@/CMake Web Site.lnk");
|
|
|
|
component.addOperation("CreateShortcut",
|
|
"@TargetDir@/cmake-maintenance.exe",
|
|
"@StartMenuDir@/CMake Maintenance Tool.lnk");
|
|
}
|
|
|
|
// Call default implementation
|
|
component.createOperations();
|
|
}
|