You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #jira none #rnx #preflight 6458e2596c35ad81e60f2fa9 - I thought I had already done this but I see nothing in the p4 history, so it is likely that I forgot to actually submit the change. - Fix some additional warnings found under clang (C5219) [CL 25370075 by paul chipchase in ue5-main branch]
27 lines
515 B
C#
27 lines
515 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class Virtualization : ModuleRules
|
|
{
|
|
public Virtualization(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
PrivateIncludePathModuleNames.Add("Analytics");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"ApplicationCore",
|
|
"DerivedDataCache",
|
|
"MessageLog",
|
|
"Projects",
|
|
"SourceControl"
|
|
});
|
|
}
|
|
}
|