aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-03 16:48:26 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-06 07:59:23 +0000
commit968ade0bc628e86b2f4626fe0cf307fb695eab2e (patch)
tree4e6524c6bf9e74436472a7ac9560fb4a70caa749 /qbs.qbs
parentfccf2bdb3ac5a4b3cc0e81a51e7c58cfebee28ef (diff)
Fix libexec path.
The binaries are normally put into a subdirectory of libexec/. Also add missing include in pri file (the install prefix was ignored for libexec binaries). Change-Id: I8fe005d7c88d1976d42d8ecedd7d08c2d49ae881 Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
Diffstat (limited to 'qbs.qbs')
-rw-r--r--qbs.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs.qbs b/qbs.qbs
index 9b02b706c..fdcf7ca60 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -12,7 +12,7 @@ Project {
property string libDirName: "lib"
property string appInstallDir: "bin"
property string libInstallDir: qbs.targetOS.contains("windows") ? "bin" : libDirName
- property string libexecInstallDir: "libexec"
+ property string libexecInstallDir: "libexec/qbs"
property string relativeLibexecPath: "../" + libexecInstallDir
property string relativePluginsPath: "../" + libDirName
property string relativeSearchPath: ".."