You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-135883 #rb Patrick.Hardy #preflight 622106716530856a97647c13 [CL 19247395 by trystan binkley-Jone in ue5-main branch]
27 lines
549 B
C#
27 lines
549 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class DisplayClusterLightCardEditorShaders : ModuleRules
|
|
{
|
|
public DisplayClusterLightCardEditorShaders(ReadOnlyTargetRules ROTargetRules) : base(ROTargetRules)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"RenderCore",
|
|
"Renderer",
|
|
"RHI",
|
|
"Projects"
|
|
});
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"../../../../Source/Runtime/Renderer/Private",
|
|
});
|
|
}
|
|
}
|