Files
UnrealEngineUWP/Engine/Source/ThirdParty/libSampleRate/UElibSampleRate.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

19 lines
375 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UELibSampleRate : ModuleRules
{
public UELibSampleRate(ReadOnlyTargetRules Target) : base(Target)
{
bEnforceIWYU = false;
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core"
}
);
}
}