Files
UnrealEngineUWP/Engine/Source/Programs/UnrealFileServer/UnrealFileServer.Build.cs
Jaroslaw Surowiec 54d6026181 UFS - Added missing Messaging dependency
[CL 2284514 by Jaroslaw Surowiec in Main branch]
2014-09-04 10:45:06 -04:00

27 lines
584 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",
"Messaging",
}
);
}
}