You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb graham.wihlidal, rune.stubbe, brian.karis, andrew.lauritzen, jeff.farris [CL 13834854 by Michal Valient in ue5-main branch]
38 lines
901 B
C#
38 lines
901 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
//MeshBuilder module is a editor module
|
|
public class MeshBuilder : ModuleRules
|
|
{
|
|
public MeshBuilder(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"RHI",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"RenderCore",
|
|
"MeshDescription",
|
|
"StaticMeshDescription",
|
|
"MeshReductionInterface",
|
|
"RawMesh",
|
|
"MeshUtilities",
|
|
"MeshUtilitiesCommon",
|
|
"ClothingSystemRuntimeNv",
|
|
"MeshBoneReduction",
|
|
"SkeletalMeshUtilitiesCommon",
|
|
"MeshBuilderCommon",
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "QuadricMeshReduction");
|
|
|
|
PrivateIncludePathModuleNames.Add("NaniteBuilder");
|
|
DynamicallyLoadedModuleNames.Add("NaniteBuilder");
|
|
}
|
|
}
|
|
}
|