You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb luke.bermingham, aidan.possemiers #fyi Denis.Phoenix, william.belcher #jira UE-193782 [CL 27432492 by Eden Harris in ue5-main branch]
51 lines
930 B
C#
51 lines
930 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class PixelStreamingEditor : ModuleRules
|
|
{
|
|
public PixelStreamingEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
var EngineDir = Path.GetFullPath(Target.RelativeEnginePath);
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"Projects",
|
|
"RenderCore",
|
|
"Renderer",
|
|
"RHI",
|
|
"PixelStreaming",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EngineSettings",
|
|
"InputCore",
|
|
"Json",
|
|
"PixelCapture",
|
|
"PixelStreamingServers",
|
|
"HTTP",
|
|
"Sockets",
|
|
"ApplicationCore",
|
|
"PixelStreamingInput"
|
|
});
|
|
|
|
if(Target.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[]
|
|
{
|
|
"UnrealEd",
|
|
"ToolMenus",
|
|
"EditorStyle",
|
|
"DesktopPlatform",
|
|
"LevelEditor",
|
|
"MainFrame"
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|