Files
UnrealEngineUWP/Engine/Plugins/Runtime/GeometryProcessing/Source/GeometryAlgorithms/GeometryAlgorithms.Build.cs
David Hill 55f9b1e1de GeometryProcessing and tests: enable implicit type conversion warnings.
#preflight 62d96d6723003b62a3c134f8
#rnx

[CL 21201814 by David Hill in ue5-main branch]
2022-07-21 11:48:13 -04:00

24 lines
717 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GeometryAlgorithms : ModuleRules
{
public GeometryAlgorithms(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
// Note: The module purposefully doesn't have a dependency on CoreUObject.
// If possible, we would like avoid having UObjects in GeometryProcessing
// modules to keep the door open for writing standalone command-line programs
// (which won't have UObject garbage collection).
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"GeometryCore"
}
);
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
}
}