Files
UnrealEngineUWP/Engine/Source/Developer/ShaderCompilerCommon/ShaderCompilerCommon.Build.cs
Gil Gribb fa7226b8fe UE4 - merge first pass at parallel rendering to main
[CL 2095959 by Gil Gribb in Main branch]
2014-06-05 16:38:54 -04:00

17 lines
292 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ShaderCompilerCommon : ModuleRules
{
public ShaderCompilerCommon(TargetInfo Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"ShaderCore",
}
);
}
}