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; }