cmake/Source/QtIFW/CMake.Dialogs.QtGUI.qs.in
2017-04-14 19:02:05 +02:00

22 lines
483 B
Plaintext

// Component: CMake.Dialogs.QtGUI
function Component()
{
// Default constructor
}
Component.prototype.createOperations = function()
{
// Create shortcut
if (installer.value("os") === "win") {
component.addOperation("CreateShortcut",
"@TargetDir@/%CMAKE_BIN_DIR%/cmake-gui.exe",
"@StartMenuDir@/CMake (cmake-gui).lnk");
}
// Call default implementation
component.createOperations();
}