summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2021-03-23 15:12:30 +0100
committerMichal Klocek <michal.klocek@qt.io>2021-05-22 14:11:25 +0200
commit44f23572e7a53ba510dba5925cf32ec2061882cc (patch)
treee64f86d6482258765f515c4a6c123f56b74a8ea5 /src
parent5f12127c9087a022d32ae91499f82157b0b49eff (diff)
Switch builds to cmake
* move the sync profile, so we can sync headers for the libs project * update dependencies * add coin module config * extend timeout for build * bump version to 6.2 * disable qmake build by deleting the main pro file * tweak product dependencies, cheat and point to even not merged change Task-number: QTBUG-91760 Change-Id: I02d6cda3a4ce09575ae993836b5089e1655401b9 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Diffstat (limited to 'src')
-rw-r--r--src/sync.profile14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/sync.profile b/src/sync.profile
new file mode 100644
index 000000000..3d5550f62
--- /dev/null
+++ b/src/sync.profile
@@ -0,0 +1,14 @@
+%modules = ( # path to module name map
+ "QtWebEngineQuick" => "$basedir/webenginequick",
+ "QtWebEngineWidgets" => "$basedir/webenginewidgets",
+ "QtWebEngineCore" => "$basedir/core/api",
+ "QtPdf" => "$basedir/pdf",
+ "QtPdfWidgets" => "$basedir/pdfwidgets",
+);
+%moduleheaders = ( # restrict the module headers to those found in relative path
+ "QtWebEngineQuick" => "api",
+ "QtWebEngineWidgets" => "api",
+ "QtPdf" => "api"
+);
+%classnames = (
+);