You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb halfdan.ingvarsson #jira na #preflight https://horde.devtools.epicgames.com/job/614382398169560001036499 [CL 17735754 by Helge Mathee in ue5-main branch]
28 lines
600 B
C#
28 lines
600 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class VisualGraphUtils : ModuleRules
|
|
{
|
|
public VisualGraphUtils(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildEditor == true)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ApplicationCore",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|