Files
UnrealEngine/Engine/Source/Editor/ClothingSystemEditor/ClothingSystemEditor.Build.cs
2025-05-18 13:04:45 +08: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);
}
}