You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb semion.piskarev #rnx #preflight 61d35ebf2e0e436c7258abf1 #ROBOMERGE-AUTHOR: jimmy.andrews #ROBOMERGE-SOURCE: CL 18505222 in //UE5/Release-5.0/... via CL 18505228 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v899-18417669) [CL 18505238 by jimmy andrews in ue5-release-engine-test branch]
27 lines
869 B
C#
27 lines
869 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class MeshConversion : ModuleRules
|
|
{
|
|
public MeshConversion(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
// Note: The module purposefully doesn't have a dependency on CoreUObject.
|
|
// Avoiding CoreUObject and Engine for this MeshConversion functionality
|
|
// keeps the door open for writing standalone command-line programs and unit tests
|
|
// (which won't have UObject garbage collection).
|
|
// For conversions that depend on Engine types, see the MeshConversionEngineTypes module
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"MeshDescription",
|
|
"StaticMeshDescription",
|
|
"SkeletalMeshDescription",
|
|
"GeometryCore"
|
|
}
|
|
);
|
|
}
|
|
}
|