Files
UnrealEngineUWP/Engine/Source/Runtime/Experimental/GeometryCollectionEngine/GeometryCollectionEngine.Build.cs
Brice Criswell 266e38c598 GeometryCollection - Dataflow Editor
- Configure the dataflow asset editor for the geometry collection object. Currently requires the enabling the pvar (p.Chaos.GeometryCollection.DataflowEditor 1)
#rb Cedric.Caillaud, Jimmy.Andrews
#preflight 628fd5838c077c0d66238920
#preflight 628fdc9af622d972b5f45181
#preflight 629002b94f63120d8ef4914c

[CL 20387372 by Brice Criswell in ue5-main branch]
2022-05-26 19:00:40 -04:00

47 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class GeometryCollectionEngine : ModuleRules
{
public GeometryCollectionEngine(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Runtime/Experimental/GeometryCollectionEngine/Private");
PublicIncludePaths.Add(ModuleDirectory + "/Public");
SetupModulePhysicsSupport(Target);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"RenderCore",
"RHI",
"Renderer",
"FieldSystemEngine",
"ChaosSolverEngine",
"NetCore",
"IntelISPC",
"DataflowCore",
"DataflowEngine"
}
);
PrivateIncludePathModuleNames.Add("DerivedDataCache");
if (Target.bBuildEditor)
{
DynamicallyLoadedModuleNames.Add("NaniteBuilder");
PrivateIncludePathModuleNames.Add("NaniteBuilder");
PublicDependencyModuleNames.Add("EditorFramework");
PublicDependencyModuleNames.Add("UnrealEd");
}
PrivateDefinitions.Add("CHAOS_INCLUDE_LEVEL_1=1");
}
}
}