aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/nsis/hello.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/nsis/hello.qbs')
-rwxr-xr-xtests/auto/blackbox/testdata/nsis/hello.qbs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/nsis/hello.qbs b/tests/auto/blackbox/testdata/nsis/hello.qbs
new file mode 100755
index 000000000..b7f3da505
--- /dev/null
+++ b/tests/auto/blackbox/testdata/nsis/hello.qbs
@@ -0,0 +1,10 @@
+import qbs
+
+NSISSetup {
+ condition: qbs.targetOS.contains("windows")
+ name: "Qbs Hello"
+ targetName: "qbs-hello-" + qbs.architecture
+ files: ["hello.nsi", "hello.bat"]
+ nsis.defines: ["batchFile=hello.bat"]
+ nsis.compressor: "lzma-solid"
+}