aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-5/myproject.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/chapter-5/myproject.qbs')
-rw-r--r--tutorial/chapter-5/myproject.qbs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tutorial/chapter-5/myproject.qbs b/tutorial/chapter-5/myproject.qbs
new file mode 100644
index 000000000..66e32b220
--- /dev/null
+++ b/tutorial/chapter-5/myproject.qbs
@@ -0,0 +1,15 @@
+Project {
+ name: "My Project"
+ minimumQbsVersion: "2.0"
+ // ![0]
+ references: [
+ "app/app.qbs",
+ "lib/lib.qbs",
+ "test/test.qbs",
+ ]
+ // ![0]
+ qbsSearchPaths: "qbs"
+ AutotestRunner {
+ timeout: 60
+ }
+}