aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-02-08 17:18:15 +0100
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-02-08 17:26:40 +0100
commitf0c797256ee0144b74f1a1f264abe3392500d2db (patch)
tree9de6ac7bd5304ac3bb430cf5a1aacd7ec0c73656 /qtcreator.qbs
parent8eaf5bc6eafd2058a81998a60580f0909093fb82 (diff)
Fix compilation with qbs on non-Linux, non-Mac Unix-like systems.
Change-Id: I075585d43f9e36a50c1945b3da4769744faa3f95 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qtcreator.qbs')
-rw-r--r--qtcreator.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/qtcreator.qbs b/qtcreator.qbs
index 3283c3d806..4cd1eb8509 100644
--- a/qtcreator.qbs
+++ b/qtcreator.qbs
@@ -174,14 +174,14 @@ Project {
]
Group {
- condition: qbs.targetOS == "linux" || qbs.targetOS == "macx"
+ condition: qbs.targetPlatform.indexOf("unix") != -1
files: "bin/qtcreator.sh"
qbs.install: true
qbs.installDir: "bin"
}
Group {
- condition: qbs.targetOS == "linux" || qbs.targetOS == "macx"
+ condition: qbs.targetPlatform.indexOf("unix") != -1
files: [
"src/shared/qtlockedfile/qtlockedfile_unix.cpp"
]