Files
UnrealEngineUWP/Engine/Source/Runtime/Media/Media.Build.cs
henrik karlsson f01581365c Disabled IWYU on some modules that was too much work to make them compile in a IWYU environment. These should be revisited and fixed up to work with IWYU at some point
#preflight 63789b0c170bc34a93a869e5
#rb none

[CL 23218413 by henrik karlsson in ue5-main branch]
2022-11-21 03:22:29 -05:00

27 lines
461 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class Media : ModuleRules
{
public Media(ReadOnlyTargetRules Target) : base(Target)
{
bEnforceIWYU = false;
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"RenderCore",
"ColorManagement",
});
PublicIncludePathModuleNames.AddRange(
new string[] {
"ColorManagement",
"RenderCore",
});
}
}
}