Files
UnrealEngineUWP/Engine/Source/Developer/MeshDescriptionOperations/MeshDescriptionOperations.Build.cs
Yuriy ODonnell 2fce49e85a Moved duplicated code from MeshUtilities and MeshDescriptionOperations (FLayoutUV, FAllocator2D, FOverlappingCorners, etc.) into a new single module MeshUtilitiesCommon.
Add a generic opaque mesh view interface FLayoutUV::IMeshView to abstract mesh data access and allow FLayoutUV to be used with any mesh type in any module.
Replaced few instances of using an old version of overlapping corners data structure (multi-map) with new specialized FOverlappingCorners container.

#rb Alexis.Matte
#rb Brian.Karis

[CL 4242975 by Yuriy ODonnell in Dev-Editor branch]
2018-07-31 05:49:40 -04:00

29 lines
886 B
C#

// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class MeshDescriptionOperations : ModuleRules
{
public MeshDescriptionOperations(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Developer/MeshDescriptionOperations/Private");
PublicIncludePaths.Add("Developer/MeshDescriptionOperations/Public");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"RenderCore",
"MeshDescription",
"MeshUtilitiesCommon",
"RawMesh",
"RHI"
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target, "MikkTSpace");
}
}
}