You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-148999, UE-149598, UE-150041, UE-150042, UE-150043, UE-150044, UE-150045, UE-150046 #rb Alejandro.Arango, Vitalii.Boiko #preflight 62b74f974869158fdb3ee0ca [CL 20826306 by peter tarasenko in ue5-main branch]
31 lines
647 B
C#
31 lines
647 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
[SupportedPlatforms("Win64")]
|
|
public class TextureShareSDK : ModuleRules
|
|
{
|
|
public TextureShareSDK(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
bRequiresImplementModule = false;
|
|
PrivatePCHHeaderFile = "Public/ITextureShareSDK.h";
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
Path.Combine(EngineDirectory,"Plugins/VirtualProduction/TextureShare/Source/TextureShareCore/Private"),
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"TextureShareCore"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|