Files
UnrealEngineUWP/Engine/Source/Editor/SourceControlWindows/SourceControlWindows.Build.cs
luc eygasier c4dec1008a Adds Source Control File Dialog.
Displays source control file dialog when checkouting files is impossible during conversion from Uncontrolled Changelist to Changelist.

#preflight 630f740ce352708d444276e0
#rb Patrick.Laflamme

[CL 21727336 by luc eygasier in ue5-main branch]
2022-08-31 16:14:08 -04:00

42 lines
872 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SourceControlWindows : ModuleRules
{
public SourceControlWindows(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.Add("Editor/SourceControlWindows/Public");
PrivateIncludePaths.Add("Editor/SourceControlWindows/Private");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"InputCore",
"Engine",
"Slate",
"SlateCore",
"SourceControl",
"UncontrolledChangelists",
"AssetTools",
"ToolWidgets",
"EditorFramework",
"WorkspaceMenuStructure",
"UnrealEd", // We need this dependency here because we use PackageTools.
}
);
if(Target.bBuildEditor == true)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"ToolMenus"
}
);
}
}
}