Files
UnrealEngineUWP/Engine/Plugins/Experimental/MeshModelingToolset/Source/MeshModelingToolsEditorOnly/MeshModelingToolsEditorOnly.Build.cs
Ryan Schmidt c3c459d75d ModelingComponents: Move SubdividePoly to ModelingComponentsEditorOnly. Need this to be able to apply SubD in other contexts.
#rb tyson.brochu
#rnx
#jira none
#preflight 60be56c8883e7f00015ed9ad

[CL 16577012 by Ryan Schmidt in ue5-main branch]
2021-06-07 16:29:48 -04:00

80 lines
1.9 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",
"SkeletalMeshDescription",
"GeometryCore",
"DynamicMesh",
"MeshConversion",
"MeshModelingTools",
"ModelingComponents",
"ModelingComponentsEditorOnly",
"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 UE standard simplification
"ProxyLODMeshReduction", // for mesh merging voxel-based csg
//"Slate",
//"SlateCore",
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}