aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-07-02 12:20:51 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2013-07-03 15:02:12 +0200
commit2e2e74018614ec25c1591cd883d7936ec42b8ca9 (patch)
tree6b3f231c901d9600b0196b4edaac4a92e7e47e43 /qbs.qbs
parent8a6c03c35c6487c33a25209f29546bfd33c51cfc (diff)
Make the qbs project files embeddable in another project.
The qmake project files already have this ability. Change-Id: I9d01609525b410a7cf0bb86865aa85c5435bad03 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qbs.qbs')
-rw-r--r--qbs.qbs5
1 files changed, 5 insertions, 0 deletions
diff --git a/qbs.qbs b/qbs.qbs
index d6f83b80e..62864d87f 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -3,6 +3,11 @@ import qbs 1.0
Project {
property bool enableUnitTests: false
property bool enableRPath: true
+ property bool installApiHeaders: true
+ property path libInstallDir: qbs.targetOS.contains("windows") ? "bin" : "lib"
+ property path libRPaths: (project.enableRPath && qbs.targetOS.contains("linux"))
+ ? ["$ORIGIN/../lib"] : undefined
+ property path resourcesInstallDir: ""
references: [
"src/src.qbs",