Files
UnrealEngineUWP/Engine/Plugins/Experimental/MeshModelingToolset/Source/ModelingComponentsEditorOnly/ModelingComponentsEditorOnly.Build.cs
ryan schmidt 53d2548382 ModelingTools: supporting fallback to no-op in FSubdividePoly if OpenSubdiv is not available, to allow removing Win64-whitelist on ModelingComponentsEditorOnly module
#rb tyson.brochu
#rnx
#jira none
#preflight 60ee211dd326d90001132f2d

#ROBOMERGE-SOURCE: CL 16845201 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v836-16769935)

[CL 16845208 by ryan schmidt in ue5-release-engine-test branch]
2021-07-13 21:03:47 -04:00

76 lines
1.5 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ModelingComponentsEditorOnly : ModuleRules
{
public ModelingComponentsEditorOnly(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",
"GeometryCore",
"GeometryFramework",
"GeometryAlgorithms",
"DynamicMesh",
"MeshConversion",
"ModelingOperators",
"ModelingComponents"
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Engine",
"InputCore",
"RenderCore",
"PhysicsCore",
"RHI",
"AssetTools",
"UnrealEd" // required for asset factories
}
);
if (Target.Platform == UnrealTargetPlatform.Win64)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"OpenSubdiv", // currently Win64-only
}
);
}
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}