Files
UnrealEngineUWP/Engine/Source/Developer/ShaderPreprocessor/ShaderPreprocessor.Build.cs

19 lines
347 B
C#
Raw Normal View History

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