You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-167816 #rb Kenzo.Terelst, Jason.Nadro #preflight 637cc200e30d438849780cd8 [CL 23235549 by Josie Yang in ue5-main branch]
28 lines
452 B
C#
28 lines
452 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class RenderResourceViewer : ModuleRules
|
|
{
|
|
public RenderResourceViewer(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"WorkspaceMenuStructure",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"InputCore",
|
|
"SlateCore",
|
|
"Slate",
|
|
"RHI",
|
|
}
|
|
);
|
|
}
|
|
}
|