Files
UnrealEngineUWP/Engine/Source/Runtime/AppFramework/AppFramework.Build.cs
Chris Gagnon 8fc25ea18e Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 4676797 by Chris Gagnon in Dev-Editor branch]
2019-01-02 14:54:39 -05:00

53 lines
1.1 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AppFramework : ModuleRules
{
public AppFramework(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ApplicationCore",
"Slate",
"SlateCore",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"InputCore",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Runtime/AppFramework/Private",
"Runtime/AppFramework/Private/Framework",
"Runtime/AppFramework/Private/Framework/Testing",
"Runtime/AppFramework/Private/Widgets",
"Runtime/AppFramework/Private/Widgets/Colors",
"Runtime/AppFramework/Private/Widgets/Testing",
"Runtime/AppFramework/Private/Widgets/Workflow",
}
);
if (Target.Configuration != UnrealTargetConfiguration.Shipping)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"SlateReflector",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"SlateReflector",
}
);
}
}
}