aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-9/app/app.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/chapter-9/app/app.qbs')
-rw-r--r--tutorial/chapter-9/app/app.qbs9
1 files changed, 9 insertions, 0 deletions
diff --git a/tutorial/chapter-9/app/app.qbs b/tutorial/chapter-9/app/app.qbs
new file mode 100644
index 000000000..837b66da3
--- /dev/null
+++ b/tutorial/chapter-9/app/app.qbs
@@ -0,0 +1,9 @@
+//! [0]
+MyApplication {
+ Depends { name: "mylib" }
+ Depends { name: "version_header" }
+ name: "My Application"
+ targetName: "myapp"
+ files: "main.c"
+}
+//! [0]