123456789101112131415161718192021222324252627 |
- // 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") {
- component.addOperation("CreateShortcut",
- "@TargetDir@/doc/cmake-3.11/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();
- }
|