Files
UnrealEngineUWP/Engine/Source/Editor/SourceControlWindows/SourceControlWindows.Build.cs
luc eygasier 18edf5ba3d Adds validation tag in changelist description.
#rb Sebastien.Lussier

#changelist validated

[CL 16051226 by luc eygasier in ue5-main branch]
2021-04-19 11:21:23 -04:00

42 lines
878 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",
"EditorStyle",
"SourceControl",
"AssetTools",
"EditorFramework",
"WorkspaceMenuStructure",
"DeveloperSettings",
"UnrealEd" // We need this dependency here because we use PackageTools.
}
);
if(Target.bBuildEditor == true)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"ToolMenus"
}
);
}
}
}