aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-10-30 12:10:27 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-10-30 17:07:56 +0100
commit5df8318bc8ddaad2fd03ea3676222fa54bdd8d9b (patch)
tree735d073375fbe3b38bfa4f4098f16736f55bc888 /qbs.qbs
parent521d595f6a0c3b4cec0f0488cb31947778bf1a3f (diff)
Fix some property types in qbs' qbs project file.
"property path" is wrong for these; they're just strings. Change-Id: I050b937ee213441a1d19e48a60eef58cfa6b3ba7 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qbs.qbs')
-rw-r--r--qbs.qbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/qbs.qbs b/qbs.qbs
index d5de22ed4..8a3eb0b79 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -5,8 +5,8 @@ Project {
property bool enableRPath: true
property bool installApiHeaders: true
property bool withExamples: true
- property path libInstallDir: qbs.targetOS.contains("windows") ? "bin" : "lib"
- property path libRPaths: {
+ property string libInstallDir: qbs.targetOS.contains("windows") ? "bin" : "lib"
+ property string libRPaths: {
if (!project.enableRPath)
return undefined;
if (qbs.targetOS.contains("linux"))
@@ -14,7 +14,7 @@ Project {
if (qbs.targetOS.contains("osx"))
return ["@loader_path/../lib"]
}
- property path resourcesInstallDir: ""
+ property string resourcesInstallDir: ""
references: [
"doc/doc.qbs",