Files
UnrealEngineUWP/Engine/Source/Developer/ShaderFormatOpenGL/ShaderFormatOpenGL.Build.cs
2014-03-14 14:13:41 -04:00

27 lines
503 B
C#

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