aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-10-25 17:05:06 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-10-29 17:09:21 +0100
commitbb3f7fa4ead8b0a23539376fc4d23aee51a88863 (patch)
tree622073f4487b48cd0a0899c8324b1344b79d497c /qbs.qbs
parentceaa4b9a1f856aa82dfb95fbdef8b99f2105a669 (diff)
Add examples.
These are mostly former manual tests that seem useful for demonstrating some feature to learners. Change-Id: I06d895ebdee1280699416cf4930a08602951aaf7 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qbs.qbs')
-rw-r--r--qbs.qbs4
1 files changed, 3 insertions, 1 deletions
diff --git a/qbs.qbs b/qbs.qbs
index 62ee68f51..31fb6e056 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -4,6 +4,7 @@ Project {
property bool enableUnitTests: false
property bool enableRPath: true
property bool installApiHeaders: true
+ property bool withExamples: true
property path libInstallDir: qbs.targetOS.contains("windows") ? "bin" : "lib"
property path libRPaths: {
if (!project.enableRPath)
@@ -16,9 +17,10 @@ Project {
property path resourcesInstallDir: ""
references: [
- "src/src.qbs",
"doc/doc.qbs",
+ "examples/examples.qbs",
"share/share.qbs",
+ "src/src.qbs",
"tests/auto/auto.qbs"
]
}