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 GeometryAlgorithms : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public GeometryAlgorithms(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
|
|
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).
|
2019-06-04 15:42:48 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
2021-05-21 01:04:38 -04:00
|
|
|
"GeometryCore"
|
2019-06-04 15:42:48 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|