Files
UnrealEngineUWP/Engine/Source/Developer/FriendsAndChat/FriendsAndChat.Build.cs
Steve Robb 7661666dcb Error when a module is both a dependency and dynamically loaded.
Fixes for lots of existing modules by removing all dynamically loaded duplicates (this is probably not the correct solution, but is the safest).

#codereview robert.manuszewski

[CL 2610845 by Steve Robb in Main branch]
2015-07-06 05:46:20 -04:00

93 lines
1.9 KiB
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class FriendsAndChat : ModuleRules
{
public FriendsAndChat(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"InputCore",
"Slate",
"OnlineSubsystem"
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"SlateCore",
"Sockets",
"OnlineSubsystem"
}
);
PrivateIncludePaths.AddRange(
new string[]
{
"Developer/FriendsAndChat/Private",
"Developer/FriendsAndChat/Private/UI/Widgets",
"Developer/FriendsAndChat/Private/Models",
"Developer/FriendsAndChat/Private/Core",
"Developer/FriendsAndChat/Private/Layers/DataAccess",
"Developer/FriendsAndChat/Private/Layers/DataAccess/Analytics",
"Developer/FriendsAndChat/Private/Layers/Domain",
"Developer/FriendsAndChat/Private/Layers/Presentation",
"Developer/FriendsAndChat/Private/Layers/UI"
}
);
PublicIncludePaths.AddRange(
new string[]
{
"Developer/FriendsAndChat/Public/Models",
"Developer/FriendsAndChat/Public/Interfaces",
// "Developer/FriendsAndChat/Source/Layers/DataAccess/Public",
// "Developer/FriendsAndChat/Source/Layers/Domain/Public",
"Developer/FriendsAndChat/Public/Layers/Presentation",
// "Developer/FriendsAndChat/Source/Layers/UI/Public"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"HTTP",
"Analytics",
"AnalyticsET",
"EditorStyle",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"HTTP",
"Analytics",
"AnalyticsET",
"EditorStyle",
}
);
if (UEBuildConfiguration.bCompileMcpOSS == true)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"OnlineSubsystemMcp",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"OnlineSubsystemMcp",
}
);
}
}
}