From 9de470f670cb92aee67b388f3ba0708c409b0095 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 31 Jan 2022 18:04:42 +0100 Subject: [PATCH] Add new build tool log location for project files generation (as Launcher might want) --- Source/Editor/Editor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Editor/Editor.cpp b/Source/Editor/Editor.cpp index 5a1571fca..16acfb054 100644 --- a/Source/Editor/Editor.cpp +++ b/Source/Editor/Editor.cpp @@ -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; }