Files
UnrealEngine/Engine/Plugins/Experimental/ChaosOutfitAsset/Source/ChaosOutfitAssetDataflowNodes/ChaosOutfitAssetDataflowNodes.Build.cs
2025-05-18 13:04:45 +08:00

27 lines
542 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ChaosOutfitAssetDataflowNodes : ModuleRules
{
public ChaosOutfitAssetDataflowNodes(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Chaos",
"ChaosClothAssetEngine",
"ChaosOutfitAssetEngine",
"DataflowCore",
"DataflowNodes",
"Engine",
"MeshResizingCore",
}
);
}
}