Files
UnrealEngineUWP/Engine/Source/ThirdParty/libSampleRate/UElibSampleRate.Build.cs
henrik karlsson ea8ea49aa2 [UBT]
* Changed lots of modules to use IWYUSupport instead of bEnforceIWYU (which is being deprecated)

#preflight 63bc8486c45a2c81e0b14fe8
#rb none

[CL 23641460 by henrik karlsson in ue5-main branch]
2023-01-11 01:32:59 -05:00

19 lines
385 B
C#

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