Files
UnrealEngineUWP/Engine/Plugins/Experimental/MeshModelingToolset/Source/MeshModelingToolsEditorOnly/MeshModelingToolsEditorOnly.Build.cs
tyson brochu f615af570a Add a prototype Subdivide tool that converts a Group Topology into a smooth mesh.
#jira UETOOL-2408
#rb jimmy.andrews ryan.schmidt
#rnx

[CL 14720377 by tyson brochu in ue5-main branch]
2020-11-11 12:24:31 -04:00

79 lines
1.8 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MeshModelingToolsEditorOnly : ModuleRules
{
public MeshModelingToolsEditorOnly(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicIncludePaths.AddRange(
new string[] {
// ... add public include paths required here ...
}
);
PrivateIncludePaths.AddRange(
new string[] {
// ... add other private include paths required here ...
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"InteractiveToolsFramework",
"MeshDescription",
"StaticMeshDescription",
"GeometricObjects",
"DynamicMesh",
"MeshConversion",
"MeshModelingTools",
"ModelingComponents",
"ModelingOperators",
"ModelingOperatorsEditorOnly",
"ProxyLODMeshReduction", // currently required to be public due to IVoxelBasedCSG API
// ... add other public dependencies that you statically link with here ...
"HairStrandsCore" // required for Hair toolset
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Engine",
"RenderCore",
"RHI",
"InputCore",
"MeshUtilities", // tangents calculation
"EditorFramework",
"UnrealEd",
"MeshBuilder",
"MeshUtilitiesCommon",
"MeshReductionInterface", // for UE4 standard simplification
"ProxyLODMeshReduction", // for mesh merging voxel-based csg
"OpenSubdiv",
//"Slate",
//"SlateCore",
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}