Files
UnrealEngineUWP/Engine/Source/Programs/LiveCodingConsole/LiveCodingConsole.Build.cs
Juan Canada 2ecf4f9708 Merging //UE4/Dev-Main@10877709 to Dev-RenderPlat-Staging(//UE4/Dev-Rendering)
#rnx
#rb none

[CL 10895568 by Juan Canada in Dev-RenderPlat-Staging branch]
2020-01-07 13:45:01 -05:00

28 lines
597 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LiveCodingConsole : ModuleRules
{
public LiveCodingConsole(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Json",
"Projects",
"ApplicationCore",
"Slate",
"SlateCore",
"StandaloneRenderer",
"MessageLog",
"LiveCodingServer"
});
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
}
}