Files
UnrealEngineUWP/Engine/Source/Developer/ShaderPreprocessor/ShaderPreprocessor.Build.cs
Joe Kirchoff 4d1c3ab0b8 Disable sndbs distribution for ShaderPreprocessor module
#rnx
#rb trivial
#preflight 63e41634ea7ad6869835614b

[CL 24083177 by Joe Kirchoff in ue5-main branch]
2023-02-08 16:42:12 -05:00

24 lines
567 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ShaderPreprocessor : ModuleRules
{
public ShaderPreprocessor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"RenderCore",
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target, "MCPP");
PrivateDefinitions.Add("STB_CONFIG=../StbConfig.h");
// TODO: Disable SN-DBS distribution until ../StbConfig.h include from STB_CONFIG can be resolved correctly
bBuildLocallyWithSNDBS = true;
}
}