Files
UnrealEngineUWP/Engine/Source/Runtime/LiveLinkInterface/LiveLinkInterface.Build.cs
David Hibbitts 51f0b5a08b Removed an Engine dependency (via TimeManagement) from LiveLinkInterface
#jira none
#lockdown nick.penwarden
#rb martin.wilson
#fyi martin.wilson

[CL 4398312 by David Hibbitts in Main branch]
2018-09-26 11:00:46 -04:00

17 lines
365 B
C#

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LiveLinkInterface : ModuleRules
{
public LiveLinkInterface(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject"
}
);
}
}