Add build git commit sha in log file

This commit is contained in:
Simon De Backer 2020-09-04 21:10:43 +02:00
parent f8611c1b6e
commit 1528e1ebe2
2 changed files with 2 additions and 0 deletions

View File

@ -75,6 +75,7 @@ include(sources/QWidgetAnimation/QWidgetAnimation.pri)
DEFINES += QAPPLICATION_CLASS=QApplication
DEFINES += QT_MESSAGELOGCONTEXT
DEFINES += GIT_COMMIT_SHA="\\\"$(shell git -C \""$$_PRO_FILE_PWD_"\" rev-parse --verify HEAD)\\\""
TEMPLATE = app
DEPENDPATH += .

View File

@ -81,6 +81,7 @@ void Machine_info::send_info_to_debug()
qInfo()<< "Qt library location Qt settings:"
<< QLibraryInfo::location(QLibraryInfo::SettingsPath);
#endif
qInfo()<< "GitRevision " + QString(GIT_COMMIT_SHA);
qInfo()<< "QElectroTech V " + QET::displayedVersion;
qInfo()<< tr("Compilation : ") + pc.built.version;
qInfo()<< "Built with Qt " + pc.built.QT