Files
UnrealEngineUWP/Engine/Source/Editor/ClothingSystemEditor/ClothingSystemEditor.Build.cs
bryan sefcik 91c57d395e Removed redundant module includes.
#preflight 645d4bf3aa3c584c0b5b3a67

[CL 25435653 by bryan sefcik in ue5-main branch]
2023-05-11 16:48:21 -04:00

43 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class ClothingSystemEditor : ModuleRules
{
public ClothingSystemEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("UnrealEd");
PublicIncludePathModuleNames.Add("ClothingSystemRuntimeInterface");
PublicIncludePathModuleNames.Add("ClothingSystemRuntimeNv");
PublicIncludePathModuleNames.Add("ClothingSystemEditorInterface");
PublicIncludePathModuleNames.Add("Persona");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
"RenderCore"
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ClothingSystemRuntimeInterface",
"ClothingSystemRuntimeCommon",
"ClothingSystemRuntimeNv",
"ContentBrowser",
"EditorFramework",
"UnrealEd",
"SlateCore",
"Slate",
"ClothingSystemEditorInterface"
}
);
SetupModulePhysicsSupport(Target);
}
}