Files
UnrealEngineUWP/Engine/Source/Editor/SourceControlWindowExtender/SourceControlWindowExtender.Build.cs
patrick enfedaque 2d8d4adaa3 SourceControlWindowExtender: Extends functionality of the SourceControlWindows window
Actor: Focus, Pin, Select
Assets: Browse To

#jira UE-155245
#rb patrick.laflamme, richard.malo
#preflight 630796aa0968fbaf691de565

[CL 21590365 by patrick enfedaque in ue5-main branch]
2022-08-26 11:04:20 -04:00

28 lines
602 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SourceControlWindowExtender : ModuleRules
{
public SourceControlWindowExtender(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.Add("Editor/SourceControlWindowExtender/Public");
PrivateIncludePaths.Add("Editor/SourceControlWindowExtender/Private");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"ToolMenus",
"SlateCore",
"Slate",
"SourceControl",
"SourceControlWindows",
"UnrealEd"
}
);
}
}