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",
|
|
}
|
|
);
|
|
}
|
|
}
|