Files
UnrealEngine/Engine/Plugins/Developer/AnimationSharing/Source/AnimationSharingEd/AnimationSharingEd.Build.cs
2025-05-18 13:04:45 +08:00

27 lines
649 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AnimationSharingEd : ModuleRules
{
public AnimationSharingEd(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"UnrealEd",
"AssetTools",
"AnimationSharing",
"Slate",
"SlateCore",
"PropertyEditor",
}
);
CppCompileWarningSettings.UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}