|
|
@ -91,6 +91,8 @@ Settings::Settings( const QString& settingsFilePath,
|
|
|
|
config[ "prepare" ] >> m_modulesPrepareList;
|
|
|
|
config[ "prepare" ] >> m_modulesPrepareList;
|
|
|
|
config[ "install" ] >> m_modulesInstallList;
|
|
|
|
config[ "install" ] >> m_modulesInstallList;
|
|
|
|
config[ "postinstall" ] >> m_modulesPostInstallList;
|
|
|
|
config[ "postinstall" ] >> m_modulesPostInstallList;
|
|
|
|
|
|
|
|
m_brandingComponentName = QString::fromStdString( config[ "branding" ]
|
|
|
|
|
|
|
|
.as< std::string >() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch ( YAML::Exception& e )
|
|
|
|
catch ( YAML::Exception& e )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -130,6 +132,13 @@ Settings::modules( Phase phase ) const
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QString
|
|
|
|
|
|
|
|
Settings::brandingComponentName() const
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return m_brandingComponentName;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
bool
|
|
|
|
Settings::debugMode() const
|
|
|
|
Settings::debugMode() const
|
|
|
|
{
|
|
|
|
{
|
|
|
|