Files
UnrealEngineUWP/Engine/Source/Developer/Apple/MetalShaderFormat/MetalShaderFormat.Build.cs
2015-09-18 12:45:20 -04:00

26 lines
523 B
C#

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