aboutsummaryrefslogtreecommitdiff
path: root/smolbote.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'smolbote.qbs')
-rw-r--r--smolbote.qbs12
1 files changed, 10 insertions, 2 deletions
diff --git a/smolbote.qbs b/smolbote.qbs
index 47c54d8..0d3b395 100644
--- a/smolbote.qbs
+++ b/smolbote.qbs
@@ -50,6 +50,7 @@ Project {
defines.push('VERSION="'+git.version+'"');
return defines;
}
+ Depends { name: "Qt"; submodules: ["core", "widgets", "webengine", "webenginewidgets"] }
files: [
"data/resources.qrc",
@@ -98,12 +99,19 @@ Project {
"src/xbel/xbel.h",
]
- Depends { name: "Qt"; submodules: ["core", "widgets", "webengine", "webenginewidgets"] }
-
// Properties for the produced executable
Group {
fileTagsFilter: product.type // filter selects produced executable
qbs.install: true // install it
}
+
+ // config
+ Group {
+ name: "Configuration"
+ files: [
+ "data/poi.conf"
+ ]
+ qbs.install: true
+ }
}
}