OLS/Source/OLSAnimationEditor/OLSAnimationEditor.Build.cs

19 lines
587 B
C#
Raw Normal View History

2024-09-22 21:11:19 +00:00
using System.IO;
using UnrealBuildTool;
public class OLSAnimationEditor : ModuleRules
{
public OLSAnimationEditor(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new[]
{
"Core", "CoreUObject", "Engine", "UnrealEd", "AnimGraph",
"BlueprintGraph", "SlateCore", "ToolMenus", "Slate", "AnimationBlueprintEditor", "OLSAnimation"
});
PrivateDependencyModuleNames.AddRange(new string[] { "MessageLog" });
}
}