Files
UnrealEngineUWP/Engine/Source/Runtime/GeometryCore/GeometryCore.Build.cs
christopher waters f0b834540e Cleaning up a number of direct module includes.
[CL 24253328 by christopher waters in ue5-main branch]
2023-02-16 04:13:28 -05:00

27 lines
562 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GeometryCore : ModuleRules
{
public GeometryCore(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePathModuleNames.AddRange(
new string[] {
"AnimationCore", // For the BoneWeights.h include
"Engine", // For GPUSkinPublicDefs.h
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core"
}
);
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}