You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 647b5f919c5bac5c6f8be490 #jira [CL 25782459 by bryan sefcik in ue5-main branch]
29 lines
481 B
C#
29 lines
481 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AnimationBlueprintLibrary : ModuleRules
|
|
{
|
|
public AnimationBlueprintLibrary(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"TimeManagement"
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"AnimGraph",
|
|
"Engine",
|
|
"BlueprintGraph",
|
|
"UnrealEd",
|
|
}
|
|
);
|
|
}
|
|
}
|