Include build server OS as text in about dialog

This commit is contained in:
Magne Sjaastad
2024-08-27 07:38:53 +02:00
committed by GitHub
parent ff505f587e
commit 41256e0b75
3 changed files with 21 additions and 1 deletions

View File

@@ -35,4 +35,6 @@
#define RESINSIGHT_PYTHON_VERSION "@Python3_VERSION@"
#define RESINSIGHT_GIT_HASH "@RESINSIGHT_GIT_HASH@"
#define RESINSIGHT_GIT_HASH "@RESINSIGHT_GIT_HASH@"
#define RESINSIGHT_BUILD_SYSTEM_ID "@RESINSIGHT_BUILD_SYSTEM_ID@"

View File

@@ -148,6 +148,8 @@ void RicHelpAboutFeature::onActionTriggered( bool isChecked )
dlg.addVersionEntry( " ", QString( " " ) + vendor + " : " + render );
}
dlg.addVersionEntry( " ", QString( " Build Server : " ) + RESINSIGHT_BUILD_SYSTEM_ID );
QString compiledUsingPythonVersion = RESINSIGHT_PYTHON_VERSION;
if ( !compiledUsingPythonVersion.isEmpty() )
{