aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/wix/WiXInstallers.qbs
blob: 718901675b5c1c33709c378107c22a9e8966a716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import qbs

Project {
    WindowsInstallerPackage {
        name: "QbsSetup"
        targetName: "qbs-" + qbs.architecture
        files: ["QbsSetup.wxs", "ExampleScript.bat"]
        wix.defines: ["scriptName=ExampleScript.bat"]
    }

    WindowsSetupPackage {
        Depends { name: "QbsSetup" }
        name: "QbsBootstrapper"
        targetName: "qbs-setup-" + qbs.architecture
        files: ["QbsBootstrapper.wxs"]
        wix.defines: ["msiName=qbs-" + qbs.architecture + ".msi"]
    }

    WindowsInstallerPackage {
        name: "RegressionBuster9000"
        files: ["QbsSetup.wxs", "Qt.wxs"]
        wix.defines: ["scriptName=ExampleScript.bat"]
        wix.cultures: []
    }
}