Files
UnrealEngineUWP/Engine/Plugins/Developer/GitSourceControl/Source/GitSourceControl/GitSourceControl.Build.cs
paul chipchase 24fa7d6c3b Truncation warning fixes for GitSourceControl module
#rb trivial
#rnx

[CL 26605626 by paul chipchase in ue5-main branch]
2023-07-26 10:08:07 -04:00

31 lines
684 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GitSourceControl : ModuleRules
{
public GitSourceControl(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Slate",
"SlateCore",
"InputCore",
"DesktopWidgets",
"SourceControl",
}
);
if (Target.bBuildEditor == true)
{
// needed to enable/disable this via experimental settings
PrivateDependencyModuleNames.Add("CoreUObject");
PrivateDependencyModuleNames.Add("EditorFramework");
PrivateDependencyModuleNames.Add("UnrealEd");
}
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}