You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#RB marcus.Wassmer #JIRA 0 #ROBOMERGE-OWNER: ryan.vance #ROBOMERGE-AUTHOR: arne.schober #ROBOMERGE-SOURCE: CL 5053015 in //Fortnite/Release-8.00/... via CL 5063923 #ROBOMERGE-BOT: DEVVR (Main -> Dev-VR) [CL 5139438 by arne schober in Dev-VR branch]
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
// Copyright 1998-2019 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",
|
|
"RenderCore",
|
|
"MeshDescriptionOperations",
|
|
"MeshReductionInterface",
|
|
"RawMesh",
|
|
"MeshUtilitiesCommon",
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "nvTriStrip");
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "ForsythTriOptimizer");
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "nvTessLib");
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "QuadricMeshReduction");
|
|
}
|
|
}
|
|
}
|