Files
UnrealEngineUWP/Engine/Source/Developer/GameplayDebugger/GameplayDebugger.Build.cs
sebastian kowalczyk 352c7b97ff Changed GameplayDebugger to use AutoStartup functionality (bIsAutoStartupModule flag) #ue4
Moved AutoStartup initialization to FEngineLoop::Init() function (ELoadingPhase::PostEngineInit phase) - after talk with Jaroslaw Palczynski about it. #ue4

[CL 2334529 by sebastian kowalczyk in Main branch]
2014-10-20 09:58:24 -04:00

61 lines
1.7 KiB
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class GameplayDebugger : ModuleRules
{
public GameplayDebugger(TargetInfo Target)
{
bIsAutoStartupModule = true;
PublicIncludePaths.AddRange(
new string[] {
"Developer/GameplayDebugger/Public",
"Developer/AIModule/Public",
// ... add public include paths required here ...
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Developer/GameplayDebugger/Private",
"Runtime/Engine/Private",
"Runtime/AIModule/Private",
// ... add other private include paths required here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"InputCore",
"Engine",
"RenderCore",
"RHI",
"ShaderCore",
"AIModule", // it have to be here for now. It'll be changed to remove any dependency to AIModule in future
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
if (UEBuildConfiguration.bBuildEditor == true)
{
PrivateDependencyModuleNames.Add("UnrealEd");
}
if (UEBuildConfiguration.bCompileRecast)
{
PrivateDependencyModuleNames.Add("Navmesh");
}
}
}
}