28 lines
644 B
C#
28 lines
644 B
C#
|
using UnrealBuildTool;
|
|||
|
|
|||
|
public class OLSAnimation : ModuleRules
|
|||
|
{
|
|||
|
public OLSAnimation(ReadOnlyTargetRules Target) : base(Target)
|
|||
|
{
|
|||
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|||
|
|
|||
|
PublicDependencyModuleNames.AddRange(
|
|||
|
new string[]
|
|||
|
{
|
|||
|
"Core",
|
|||
|
}
|
|||
|
);
|
|||
|
|
|||
|
PrivateDependencyModuleNames.AddRange(
|
|||
|
new string[]
|
|||
|
{
|
|||
|
"CoreUObject",
|
|||
|
"Engine",
|
|||
|
"Slate",
|
|||
|
"SlateCore",
|
|||
|
"AnimGraphRuntime",
|
|||
|
"GameplayTags"
|
|||
|
}
|
|||
|
);
|
|||
|
}
|
|||
|
}
|