aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/wix/WiXInstallers.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/wix/WiXInstallers.qbs')
-rw-r--r--tests/auto/blackbox/testdata/wix/WiXInstallers.qbs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/wix/WiXInstallers.qbs b/tests/auto/blackbox/testdata/wix/WiXInstallers.qbs
new file mode 100644
index 000000000..6f4adfe8f
--- /dev/null
+++ b/tests/auto/blackbox/testdata/wix/WiXInstallers.qbs
@@ -0,0 +1,18 @@
+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"]
+ }
+}