Files
UnrealEngineUWP/Engine/Source/Runtime/CoreVerseVM/CoreVerseVM.build.cs
tim smith d758896471 Move VerseVM to CoreUObject to facilitate the merging of UEGC and VerseGC
#rb saam.barati phil.pizlo

[CL 27374952 by tim smith in ue5-main branch]
2023-08-25 09:08:53 -04:00

22 lines
388 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CoreVerseVM : ModuleRules
{
public CoreVerseVM(ReadOnlyTargetRules Target) : base(Target)
{
FPSemantics = FPSemanticsMode.Precise;
PCHUsage = PCHUsageMode.NoPCHs;
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
bAllowAutoRTFMInstrumentation = true;
}
}