Add new build tool log location for project files generation (as Launcher might want)

This commit is contained in:
Wojtek Figat
2022-01-31 18:04:42 +01:00
parent 01cb08a924
commit 9de470f670

View File

@@ -621,7 +621,8 @@ bool Editor::Init()
// Scripts project files generation from command line
if (CommandLine::Options.GenProjectFiles)
{
const bool failed = ScriptsBuilder::GenerateProject();
const String customArgs = TEXT("-verbose -log -logfile=\"Cache/Intermediate/ProjectFileLog.txt\"");
const bool failed = ScriptsBuilder::GenerateProject(customArgs);
exit(failed ? 1 : 0);
return true;
}