summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/innosetup/innosetup.qbs
blob: c9f6a22e866789aca7a392b5d304be9ca101c79d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import qbs.FileInfo

Project {
    InnoSetup {
        name: "QbsSetup"
        targetName: "qbs.setup.test"
        version: "1.5"
        files: [
            "test.iss"
        ]
        innosetup.verboseOutput: true
        innosetup.includePaths: ["inc"]
        innosetup.defines: ["MyProgram=" + name, "MyProgramVersion=" + version]
        innosetup.compilerFlags: ["/V9"]
        qbs.targetPlatform: "windows"
    }
    InnoSetup {
        name: "Example1"
        files: [FileInfo.joinPaths(innosetup.toolchainInstallPath, "Examples", name + ".iss")]
        qbs.targetPlatform: "windows"
    }
}