aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-03-04 09:35:46 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-03-07 15:57:34 +0100
commit28559f0d3914b16a7fa6e8a0e9002c9a3801fd30 (patch)
tree199fc299fb79fadeca355c5c1f9b631456a2c334 /tests/manual
parent7e8cb1f0af01da9b56d5fad56f2f6ec9b1210610 (diff)
fix tests/manual/localDeployment
Change-Id: I29be721327ffb548bc11f88a2624f7aa90f093b8 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/localDeployment/localDeployment.qbs6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/manual/localDeployment/localDeployment.qbs b/tests/manual/localDeployment/localDeployment.qbs
index 1909d14d0..bd4819b81 100644
--- a/tests/manual/localDeployment/localDeployment.qbs
+++ b/tests/manual/localDeployment/localDeployment.qbs
@@ -2,18 +2,16 @@ import qbs.base 1.0
Project {
Product {
- type: ["application", "installed_content"]
+ type: ["application"]
name: "HelloWorld"
destination: "bin"
Depends { name: "Qt.core"}
- files: [ "main.cpp" ]
-
Group {
+ qbs.install: true
qbs.installDir: "share"
files: ['main.cpp']
- fileTags: ["install"]
}
}
}