Open miguelemosreverte opened 8 years ago
Changing BrickGame.Build.cs to this:
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved. using UnrealBuildTool; public class BrickGame : ModuleRules { public BrickGame(TargetInfo Target) { MinFilesUsingPrecompiledHeaderOverride = 1; bFasterWithoutUnity = true; PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" }); } }
Improves compile time, like, for realsies. From minutes to 20 seconds tops.
Can you make a pull request for this?
Right away!
Actually credit should go to the french developing team @JohnsonJackblue is part of, they where the ones who discovered this!
Changing BrickGame.Build.cs to this:
Improves compile time, like, for realsies. From minutes to 20 seconds tops.