aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/localDeployment/localDeployment.qbp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/localDeployment/localDeployment.qbp')
-rw-r--r--tests/manual/localDeployment/localDeployment.qbp20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/manual/localDeployment/localDeployment.qbp b/tests/manual/localDeployment/localDeployment.qbp
new file mode 100644
index 000000000..1909d14d0
--- /dev/null
+++ b/tests/manual/localDeployment/localDeployment.qbp
@@ -0,0 +1,20 @@
+import qbs.base 1.0
+
+Project {
+ Product {
+ type: ["application", "installed_content"]
+ name: "HelloWorld"
+ destination: "bin"
+
+ Depends { name: "Qt.core"}
+
+ files: [ "main.cpp" ]
+
+ Group {
+ qbs.installDir: "share"
+ files: ['main.cpp']
+ fileTags: ["install"]
+ }
+ }
+}
+