Files
UnrealEngine/Engine/Plugins/Experimental/PixelStreamingPlayer/Source/PixelStreamingPlayerEditor/PixelStreamingPlayerEditor.Build.cs
2025-05-18 13:04:45 +08:00

39 lines
749 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 PixelStreamingPlayerEditor : ModuleRules
{
public PixelStreamingPlayerEditor(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",
"PixelStreaming",
"PixelStreamingPlayer",
"UnrealEd"
});
}
}
}