You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #preflight 62963373e62c873b96cc261d [CL 20437873 by Brice Criswell in ue5-main branch]
27 lines
534 B
C#
27 lines
534 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class DataflowNodes : ModuleRules
|
|
{
|
|
public DataflowNodes(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.Add("DataflowNodes/Private");
|
|
PublicIncludePaths.Add(ModuleDirectory + "/Public");
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"ChaosCore",
|
|
"Chaos",
|
|
"DataflowCore",
|
|
"DataflowEngine",
|
|
"Engine"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|