Files
UnrealEngine/Engine/Source/Runtime/ClothingSystemRuntimeNv/ClothingSystemRuntimeNv.Build.cs
2025-05-18 13:04:45 +08:00

30 lines
723 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ClothingSystemRuntimeNv : ModuleRules
{
public ClothingSystemRuntimeNv(ReadOnlyTargetRules Target) : base(Target)
{
SetupModulePhysicsSupport(Target);
PublicIncludePathModuleNames.Add("ClothingSystemRuntimeInterface");
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ClothingSystemRuntimeInterface",
"ClothingSystemRuntimeCommon"
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
}
);
}
}