Files
UnrealEngineUWP/Engine/Source/Developer/iOS/MetalShaderFormat/MetalShaderFormat.Build.cs
Rolando Caloca 198b364923 UE4 - Metal shader format fixes
[CL 2101781 by Rolando Caloca in Main branch]
2014-06-11 10:03:35 -04:00

26 lines
521 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MetalShaderFormat : ModuleRules
{
public MetalShaderFormat(TargetInfo Target)
{
PrivateIncludePathModuleNames.Add("TargetPlatform");
PublicIncludePaths.Add("Runtime/IOS/MetalRHI/Public");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"ShaderCore",
"ShaderCompilerCommon",
"ShaderPreprocessor"
}
);
AddThirdPartyPrivateStaticDependencies(Target,
"HLSLCC"
);
}
}