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 #fyi mattias.jansson #jira none #preflight 63d143e3f2318350a21faf6d 63d1413194644f3e8ec98efd [CL 23848000 by Nick Pace in ue5-main branch]
41 lines
805 B
C#
41 lines
805 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using EpicGames.Core;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class PixelStreamingBlueprintEditor : ModuleRules
|
|
{
|
|
public PixelStreamingBlueprintEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
var EngineDir = Path.GetFullPath(Target.RelativeEnginePath);
|
|
|
|
PublicIncludePaths.AddRange(
|
|
new string[] {
|
|
});
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
});
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"SlateCore",
|
|
"PixelStreaming",
|
|
"PixelStreamingBlueprint",
|
|
"PixelStreamingEditor",
|
|
"UnrealEd"
|
|
});
|
|
}
|
|
}
|
|
}
|