2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-06-04 15:42:48 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class DynamicMesh : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public DynamicMesh(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2022-11-17 00:29:06 -05:00
|
|
|
NumIncludedBytesPerUnityCPPOverride = 589824; // best unity size found from using UBT ProfileUnitySizes mode
|
|
|
|
|
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
2019-06-04 15:42:48 -04:00
|
|
|
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
2021-05-21 01:04:38 -04:00
|
|
|
"GeometryCore",
|
2021-02-18 14:58:26 -04:00
|
|
|
"GeometryAlgorithms"
|
2019-06-04 15:42:48 -04:00
|
|
|
}
|
2020-04-27 12:58:07 -04:00
|
|
|
);
|
|
|
|
|
|
2021-05-19 12:39:42 -04:00
|
|
|
// 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).
|
2020-04-27 12:58:07 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Eigen"
|
|
|
|
|
}
|
|
|
|
|
);
|
2022-08-19 14:30:30 -04:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
2019-06-04 15:42:48 -04:00
|
|
|
}
|
|
|
|
|
}
|