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