Files
UnrealEngineUWP/Engine/Source/Developer/HotReload/HotReload.Build.cs
Ben Marsh bb17aef300 Move functionality to invoke UBT into DesktopPlatform.
[CL 2286483 by Ben Marsh in Main branch]
2014-09-05 13:31:22 -04:00

37 lines
711 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class HotReload : ModuleRules
{
public HotReload(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Analytics",
"Core",
"CoreUObject",
"DirectoryWatcher",
"DesktopPlatform"
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
"UnrealEd",
}
);
}
}