4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-09 16:09:37 +00:00

change validation of webengine

This commit is contained in:
Andrei Yankovich 2020-11-28 23:22:59 +03:00
parent 058bfa0687
commit a9097f93be

@ -40,9 +40,7 @@ bool Extracter::deployMSVC() {
bool Extracter::isWebEngine(const QString &package) const {
auto qtModules = _packageDependencyes.value(package).qtModules();
auto webEngine = DeployCore::QtModule::QtWebEngineModule;
return static_cast<quint64>(qtModules) & static_cast<quint64>(webEngine);
return static_cast<quint64>(qtModules) & static_cast<quint64>(DeployCore::QtModule::QtWebEngineCoreModule);
}
bool Extracter::extractWebEngine() {