Revision 5335d275527d4f58e4f2992d307c1c62cd94dd3c authored by Kitware Robot on 28 January 2016, 05:01:04 UTC, committed by Kitware Robot on 28 January 2016, 05:01:04 UTC
1 parent 656768c
Raw File
CMake.Dialogs.QtGUI.qs
// Component: CMake.Dialogs.QtGUI

function Component()
{
    // Default constructor
}

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

        component.addOperation("CreateShortcut",
                               installer.value("TargetDir") + "/bin/cmake-gui.exe",
                               installer.value("StartMenuDir") + "/CMake (cmake-gui).lnk");

    }

    // Call default implementation
    component.createOperations();
}
back to top