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