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

added more debug logs

This commit is contained in:
Andrei Yankovich 2022-10-30 21:14:30 +03:00
parent 21effae5e3
commit 20c7c6888f
2 changed files with 6 additions and 0 deletions

@ -1134,6 +1134,9 @@ QString ConfigParser::getPathFrmoQmakeLine(const QString &in) const {
bool ConfigParser::initQmakePrivate(const QString &qmake) {
QFileInfo info(qmake);
QuasarAppUtils::Params::log("initialize qt dirs for ." + info.absoluteFilePath(),
QuasarAppUtils::Debug);
QString basePath = info.absolutePath();
// Invoke qmake executable only when qmake paths exclude snapRootFS path.

@ -603,6 +603,9 @@ QString DeployCore::getAppVersion() {
}
QString DeployCore::getAppVersionName() {
if (isSnap()) {
return "*** Cool Core (snap) ***";
}
return "*** Cool Core ***";
}