Prevent project file regeneration running while compiling scripts

This commit is contained in:
2023-10-14 17:18:34 +03:00
parent 1a5606a45c
commit a3d44e0fee
2 changed files with 2 additions and 2 deletions

View File

@@ -266,7 +266,7 @@ bool ScriptsBuilder::RunBuildTool(const StringView& args, const StringView& work
bool ScriptsBuilder::GenerateProject(const StringView& customArgs)
{
String args(TEXT("-log -genproject "));
String args(TEXT("-log -mutex -genproject "));
args += customArgs;
_wasProjectStructureChanged = false;
return RunBuildTool(args);