New shutdownPostDebugSession config parameter
This commit is contained in:
@@ -61,6 +61,9 @@ namespace Bloom
|
|||||||
}
|
}
|
||||||
|
|
||||||
this->name = std::move(name);
|
this->name = std::move(name);
|
||||||
|
this->shutdownPostDebugSession = jsonObject.value(
|
||||||
|
"shutdownPostDebugSession"
|
||||||
|
).toBool(this->shutdownPostDebugSession);
|
||||||
this->debugToolConfig = DebugToolConfig(jsonObject.find("debugTool")->toObject());
|
this->debugToolConfig = DebugToolConfig(jsonObject.find("debugTool")->toObject());
|
||||||
this->targetConfig = TargetConfig(jsonObject.find("target")->toObject());
|
this->targetConfig = TargetConfig(jsonObject.find("target")->toObject());
|
||||||
|
|
||||||
|
|||||||
@@ -148,6 +148,11 @@ namespace Bloom
|
|||||||
*/
|
*/
|
||||||
std::string name;
|
std::string name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Flag to determine whether Bloom should shutdown at the end of a debug session.
|
||||||
|
*/
|
||||||
|
bool shutdownPostDebugSession = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configuration for the environment's selected debug tool.
|
* Configuration for the environment's selected debug tool.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user