Files
CMake/Source/QtIFW/installscript.qs.in
Brad King 7ebad5d201 cmake-gui: Refactor installation into CMake.app/Contents on macOS
Instead of mutating `CMAKE_INSTALL_PREFIX`, add a `CMake.app/Contents/`
prefix to install destinations besides the `cmake-gui` target itself.
2025-10-31 09:33:52 -04:00

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();
}