summaryrefslogtreecommitdiffstats
path: root/examples/startmenu/packages/org.qtproject.ifw.example/meta/installscript.qs
blob: d3ed7edec3676f5ab6d6c83ac948b3a591fe3ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function Component()
{
    // default constructor
}

Component.prototype.createOperations = function()
{
    // call default implementation to actually install README.txt!
    component.createOperations();

    if (installer.value("os") === "win") {
        component.addOperation("CreateShortcut", "@TargetDir@/README.txt", "@StartMenuDir@/README.lnk");
    }
}