You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Rename the CoreVerseVM to CorePreciseFP to better reflect its purpose. #rb fabian.giesen, Steve.Robb, Tim.Smith [CL 32696889 by andrew scheidecker in ue5-main branch]
22 lines
392 B
C#
22 lines
392 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CorePreciseFP : ModuleRules
|
|
{
|
|
public CorePreciseFP(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
FPSemantics = FPSemanticsMode.Precise;
|
|
PCHUsage = PCHUsageMode.NoPCHs;
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
}
|
|
);
|
|
|
|
bAllowAutoRTFMInstrumentation = true;
|
|
}
|
|
}
|