You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @ 14768117 For ReleaseObjectVersion.h #lockdown Marcus.Wassmer [CL 14811440 by Marc Audy in ue5-main branch]
34 lines
723 B
C#
34 lines
723 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)
|
|
{
|
|
//bUseRTTI = true;
|
|
PrivateDefinitions.Add("TEXTURE_SHARE_SDK_DLL");
|
|
|
|
bRequiresImplementModule = false;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"TextureShareCore"
|
|
}
|
|
);
|
|
|
|
string EnginePluginsDirectory = @"$(EngineDir)/Plugins/Runtime";
|
|
|
|
PublicIncludePaths.AddRange(
|
|
new string[] {
|
|
Path.Combine(EnginePluginsDirectory, "TextureShare/Source/TextureShareCore/Public/Containers")
|
|
});
|
|
}
|
|
}
|
|
}
|