summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Jeisecke <nils.jeisecke@saltation.com>2020-11-26 13:14:59 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2020-11-27 08:02:32 +0000
commit2d2dc8c5a6ea5c67e94576be2fad694b87799b11 (patch)
tree1b463bbfe67eb8dc51c337c53af2b2aa3adf7bf1
parent4a381fdd5fa37ecd29c4a1999bbc3e0de0f635e1 (diff)
Use the module's version number for QtWebEngineProcess
When built against a Qt version different from the module version, all QtWebEngine libraries will be versioned with MODULE_VERSION. QtWebEngineProcess as part of the module should be handled in the same way. Change-Id: I34073337e813baac46f207443bf54ca78d879ea6 Reviewed-by: Andy Shaw <andy.shaw@qt.io> (cherry picked from commit c636e88bc49f59548e1ac3401ae547e2ae9d2570) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/process/process.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process/process.pro b/src/process/process.pro
index a28267ee9..149bce526 100644
--- a/src/process/process.pro
+++ b/src/process/process.pro
@@ -37,9 +37,9 @@ win32 {
support_win.cpp
msvc: QMAKE_LFLAGS += /MANIFESTINPUT:$$PWD/process.exe.manifest
- VERSION = $${QT_VERSION}.0
+ VERSION = $${MODULE_VERSION}.0
} else {
- VERSION = $${QT_VERSION}
+ VERSION = $${MODULE_VERSION}
}
TEMPLATE = app