* BlankProgram can be linked with CoreUObject and exits correctly

* 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]
This commit is contained in:
Andriy Tylychko
2023-03-21 13:54:02 -04:00
parent ef897cff3f
commit 40d2fcc00c
3 changed files with 51 additions and 3 deletions

View File

@@ -9,5 +9,15 @@ public class BlankProgram : ModuleRules
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");
}
}