Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Source/QtIFW/CMake.qs.in
4998 views
// Component: CMake

function Component()
{
    // Default constructor
}

Component.prototype.createOperations = function()
{
    // Create shortcut
    if (installer.value("os") === "win") {

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