You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* 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]
19 lines
385 B
C#
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"
|
|
}
|
|
);
|
|
}
|
|
}
|