You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Disabled by default. gc.AllowIncrementalReachability controls if it's enabled or not. gc.IncrementalReachabilityTimeLimit controls time limit (defaults to 0.005 = 5ms) gc.VerifyNoUnrachableObjects (defaults to 0) controls additional GC assumption verification that no unreachable objects are reachable after RA is complete gc.ContinuousIncrementalGC (defaults to 0) is a new GC stress test that runs incremental GC continuously TObjectPtr barrier (Obj->MarkAsReachable()) is also currently disabled (compiled out with a macro) until we have all the places (ARO/BPVM) properly running barriers EngineTest tests can and will run Incremental Reachability Analysis tests even if all the above is disabled #rb Johan.Torp, Zousar.Shaker [CL 26252569 by robert manuszewski in ue5-main branch]
26 lines
457 B
C#
26 lines
457 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class DesktopWidgets : ModuleRules
|
|
{
|
|
public DesktopWidgets(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Slate",
|
|
"SlateCore",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"DesktopPlatform",
|
|
"InputCore",
|
|
}
|
|
);
|
|
}
|
|
}
|