You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// 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_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();
|
|
|
|
}
|