Files
yushan han cd8f5e35eb ChaosFlesh: Generate geometry cache in dataflow simulation
#rb cedric.caillaud, kriss.gossart
#jira none

[CL 35879362 by yushan han in ue5-main branch]
2024-08-28 16:26:24 -04:00

39 lines
812 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class DataflowSimulation : ModuleRules
{
public DataflowSimulation(ReadOnlyTargetRules Target) : base(Target)
{
bTreatAsEngineModule = true;
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"DataflowCore",
"DataflowEngine",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
// NOTE: UVEditorTools is a separate module so that it doesn't rely on the editor.
// So, do not add editor dependencies here.
"Engine",
"RenderCore",
"RHI",
"DataflowCore",
"DataflowEngine",
"Chaos",
}
);
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.Add("UnrealEd");
}
}
}
}