39 lines
749 B
C#
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"
|
|
});
|
|
}
|
|
}
|
|
}
|