Files
UnrealEngineUWP/Engine/Source/Programs/LiveCodingConsole/LiveCodingConsole.Build.cs
Jack Porter 9d2ebe90d2 Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile)
#rb None
#jira 0

[CL 5396125 by Jack Porter in Dev-Mobile branch]
2019-03-14 00:59:16 -04:00

28 lines
607 B
C#

// Copyright 1998-2019 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
}
}