2021-04-28 21:05:19 -04:00
|
|
|
// 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",
|
2022-01-12 14:53:07 -05:00
|
|
|
"SkeletalMeshDescription",
|
2021-05-21 01:04:38 -04:00
|
|
|
"GeometryCore",
|
2021-06-22 12:11:21 -04:00
|
|
|
"GeometryFramework",
|
2021-04-28 21:05:19 -04:00
|
|
|
"GeometryAlgorithms",
|
|
|
|
|
"DynamicMesh",
|
|
|
|
|
"MeshConversion",
|
|
|
|
|
"ModelingOperators",
|
|
|
|
|
"ModelingComponents"
|
|
|
|
|
// ... add other public dependencies that you statically link with here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2021-08-16 07:51:37 -04:00
|
|
|
"BSPUtils",
|
2021-04-28 21:05:19 -04:00
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"RenderCore",
|
2021-06-02 15:58:00 -04:00
|
|
|
"PhysicsCore",
|
2021-10-25 20:05:28 -04:00
|
|
|
"Slate",
|
2021-04-28 21:05:19 -04:00
|
|
|
"RHI",
|
2021-05-14 16:28:31 -04:00
|
|
|
"AssetTools",
|
2022-12-06 19:47:20 -05:00
|
|
|
"UnrealEd",
|
|
|
|
|
"SkeletalMeshUtilitiesCommon" // required for asset factories
|
2021-04-28 21:05:19 -04:00
|
|
|
}
|
|
|
|
|
);
|
2021-07-13 21:03:47 -04:00
|
|
|
|
2023-06-15 11:41:45 -04:00
|
|
|
// OpenSubdiv has Windows, Mac and Unix support
|
|
|
|
|
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Windows) || Target.Platform == UnrealTargetPlatform.Mac || Target.IsInPlatformGroup(UnrealPlatformGroup.Unix))
|
2021-07-13 21:03:47 -04:00
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2023-06-15 11:41:45 -04:00
|
|
|
"OpenSubdiv",
|
2021-07-13 21:03:47 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-28 21:05:19 -04:00
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// ... add any modules that your module loads dynamically here ...
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|