You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 634f4929864d9be23657bbf0 [CL 22634555 by bryan sefcik in ue5-main branch]
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class GameplayTasksEditor : ModuleRules
|
|
{
|
|
public GameplayTasksEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
OverridePackageType = PackageOverrideType.EngineDeveloper;
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
System.IO.Path.Combine(GetModuleDirectory("AssetTools"), "Private"),
|
|
System.IO.Path.Combine(GetModuleDirectory("GameplayTasksEditor"), "Private"),
|
|
System.IO.Path.Combine(GetModuleDirectory("GraphEditor"), "Private"),
|
|
System.IO.Path.Combine(GetModuleDirectory("Kismet"), "Private"),
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
// ... add private dependencies that you statically link with here ...
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"AssetTools",
|
|
"ClassViewer",
|
|
"GameplayTags",
|
|
"GameplayTasks",
|
|
"InputCore",
|
|
"PropertyEditor",
|
|
"Slate",
|
|
"SlateCore",
|
|
"BlueprintGraph",
|
|
"Kismet",
|
|
"KismetCompiler",
|
|
"GraphEditor",
|
|
"MainFrame",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"EditorWidgets",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|