summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Jeisecke <nils.jeisecke@saltation.com>2020-11-26 13:14:59 +0100
committerNils Jeisecke <nils.jeisecke@saltation.com>2020-11-26 14:08:47 +0100
commitc636e88bc49f59548e1ac3401ae547e2ae9d2570 (patch)
treeef5d92815a8cc0afd4c3d40135396f162a3daebd
parent97b1a29c1c6db3c93dd6653d75aebcbac487b974 (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 Pick-to: 5.15 Reviewed-by: Andy Shaw <andy.shaw@qt.io>
-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 f9068cd7d..bd5752f7c 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