aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-01-16 11:27:26 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-01-24 13:02:32 +0100
commit0cf4f0885b4f277068f71766c1c4aa7563288e39 (patch)
tree6d83c80d1afb1a3e3419e66a55f18ff70af27e48 /qtcreator.qbs
parented93b998dd58a3bcd1949505a0d4142a5e961467 (diff)
Adapt qbs project files to new installation approach.
This need a qbs build >= commit 5cdf94de to work properly. Change-Id: If86aedf9e3f9d01ad1202e03221e49698d517666 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qtcreator.qbs')
-rw-r--r--qtcreator.qbs13
1 files changed, 8 insertions, 5 deletions
diff --git a/qtcreator.qbs b/qtcreator.qbs
index 58c7978f38..4413f66cae 100644
--- a/qtcreator.qbs
+++ b/qtcreator.qbs
@@ -136,10 +136,8 @@ Project {
}
}
- Product {
+ Application {
name: "qtcreator"
- type: ["application", "installed_content"]
- destination: "bin"
consoleApplication: qbs.debugInformation
cpp.rpaths: ["$ORIGIN/../lib/qtcreator"]
@@ -177,7 +175,7 @@ Project {
Group {
condition: qbs.targetOS == "linux" || qbs.targetOS == "macx"
files: "bin/qtcreator.sh"
- fileTags: "install"
+ qbs.install: true
qbs.installDir: "bin"
}
@@ -194,6 +192,11 @@ Project {
"src/shared/qtlockedfile/qtlockedfile_win.cpp"
]
}
+
+ Group {
+ fileTagsFilter: product.type
+ qbs.install: true
+ qbs.installDir: "bin"
+ }
}
}
-