2021-05-21 01:04:38 -04:00
|
|
|
// 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
|
2023-02-16 04:13:28 -05:00
|
|
|
"Engine", // For GPUSkinPublicDefs.h
|
2021-05-21 01:04:38 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core"
|
|
|
|
|
}
|
|
|
|
|
);
|
2022-07-21 11:03:29 -04:00
|
|
|
|
2022-08-19 14:30:30 -04:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
2024-05-30 17:59:48 -04:00
|
|
|
|
|
|
|
|
bDisableAutoRTFMInstrumentation = true;
|
2021-05-21 01:04:38 -04:00
|
|
|
}
|
|
|
|
|
}
|