You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* instructions how to run automation tests in BlankProgram, how to enable tracing and other tips #rb Devin.Doucette #preflight 6419ec0dec01de1664d57ae7 [CL 24735299 by Andriy Tylychko in ue5-main branch]
24 lines
654 B
C#
24 lines
654 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class BlankProgram : ModuleRules
|
|
{
|
|
public BlankProgram(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePathModuleNames.Add("Launch");
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
PrivateDependencyModuleNames.Add("Projects");
|
|
|
|
// to link with CoreUObject module:
|
|
// PrivateDependencyModuleNames.Add("CoreUObject");
|
|
|
|
// to enable tracing:
|
|
// AppendStringToPublicDefinition("UE_TRACE_ENABLED", "1");
|
|
|
|
// to enable LLM tracing:
|
|
// GlobalDefinitions.Add("LLM_ENABLED_IN_CONFIG=1");
|
|
// GlobalDefinitions.Add("UE_MEMORY_TAGS_TRACE_ENABLED=1");
|
|
}
|
|
}
|