Files
UnrealEngineUWP/Engine/Source/Programs/UnrealFileServer/UnrealFileServer.Build.cs
Josh Adams 101d1b3e72 - Fixed UnrealFileServer after recent changes
#codereview daniel.lamb

[CL 2289452 by Josh Adams in Main branch]
2014-09-08 11:51:08 -04:00

26 lines
567 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UnrealFileServer : ModuleRules
{
public UnrealFileServer(TargetInfo Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
// For LaunchEngineLoop.cpp include
PrivateIncludePaths.Add("Runtime/Launch/Private");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"DirectoryWatcher",
"NetworkFileSystem",
"SandboxFile",
"Sockets",
"Projects",
}
);
}
}