summaryrefslogtreecommitdiff
path: root/examples/xml/xmlstreamlint/xmlstreamlint.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/xml/xmlstreamlint/xmlstreamlint.qbs')
-rw-r--r--examples/xml/xmlstreamlint/xmlstreamlint.qbs20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/xml/xmlstreamlint/xmlstreamlint.qbs b/examples/xml/xmlstreamlint/xmlstreamlint.qbs
new file mode 100644
index 0000000000..d74e684aa3
--- /dev/null
+++ b/examples/xml/xmlstreamlint/xmlstreamlint.qbs
@@ -0,0 +1,20 @@
+import qbs
+import qbs.FileInfo
+
+CppApplication {
+ name: "xmlstreamlint"
+ condition: Qt.xml.present
+ consoleApplication: true
+
+ Depends { name: "Qt.xml"; required: false }
+
+ files: [
+ "main.cpp",
+ ]
+
+ Group {
+ fileTagsFilter: ["application"]
+ qbs.install: true
+ qbs.installDir: FileInfo.joinPaths(Qt.core.examplesInstallDir, "xml", "xmlstreamlint")
+ }
+}