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