summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2019-10-29 13:44:04 +0100
committerIikka Eklund <iikka.eklund@qt.io>2019-11-05 13:29:53 +0200
commit4cdfa55502704d13f3d0cc1f2feccd8807e0c1d4 (patch)
tree85b1349a6659aeb8b83c02fe5c1b261b9fad7340
parentb990f98b44ced37a319d7f476fad7bfb3e070be0 (diff)
Add configuration file to help the coin ExportTool to split the contentv5.14.0-beta3
By default all files shall be in the base package, but additional packages can be specified in the top-level object by name along with python glob.glob compatible masks. Task-number: COIN-349 Change-Id: Ic0e2bae67d7c8a596f249ce527bb58c0a50d7ab2 Reviewed-by: Johan Helsing <johan.helsing@qt.io> Reviewed-by: Antti Kokko <antti.kokko@qt.io>
-rw-r--r--coin/qt-installer-package-config.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/coin/qt-installer-package-config.json b/coin/qt-installer-package-config.json
new file mode 100644
index 00000000..be05b2e6
--- /dev/null
+++ b/coin/qt-installer-package-config.json
@@ -0,0 +1,11 @@
+{
+ "version": "1",
+ "module-split": {
+ "qtwayland-compositor": [
+ "**/*compositor*",
+ "**/*Compositor*/**/*",
+ "**/wayland-graphics-integration-server/*",
+ "**/wayland-hardware-layer-integration/*"
+ ]
+ }
+}