Files
UnrealEngineUWP/Engine/Plugins/Runtime/MeshModelingToolset/Source/ModelingComponentsEditorOnly/ModelingComponentsEditorOnly.Build.cs
halfdan ingvarsson 694e3702e6 Geometry Scripting: Asset creation and binding functionality for skeletal meshes
#jira UE-168307
#rb ryan.schmidt
#preflight 638ec4b167018b14b5798436

[CL 23421753 by halfdan ingvarsson in ue5-main branch]
2022-12-06 19:47:20 -05:00

64 lines
1.3 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ModelingComponentsEditorOnly : ModuleRules
{
public ModelingComponentsEditorOnly(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"InteractiveToolsFramework",
"MeshDescription",
"StaticMeshDescription",
"SkeletalMeshDescription",
"GeometryCore",
"GeometryFramework",
"GeometryAlgorithms",
"DynamicMesh",
"MeshConversion",
"ModelingOperators",
"ModelingComponents"
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"BSPUtils",
"CoreUObject",
"Engine",
"InputCore",
"RenderCore",
"PhysicsCore",
"Slate",
"RHI",
"AssetTools",
"UnrealEd",
"SkeletalMeshUtilitiesCommon" // 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 ...
}
);
}
}