Files
UnrealEngineUWP/Engine/Source/Developer/SourceControl/SourceControl.Build.cs
Matt Kuhlenschmidt c13ac505b2 Updated source control icons
Source control providers now require an FSlateIcon and implementation of GetIcon instead of overriding mutliple functions to do the same thing. Fixed up all known source control providers.

#jira UETOOL-2812

[CL 15045642 by Matt Kuhlenschmidt in ue5-main branch]
2021-01-11 20:50:19 -04:00

63 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SourceControl : ModuleRules
{
public SourceControl(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Developer/SourceControl/Private");
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"SlateCore",
"InputCore",
}
);
PublicDefinitions.Add("SOURCE_CONTROL_WITH_SLATE=1");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Slate",
"EditorStyle"
}
);
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"EditorFramework",
"Engine",
"UnrealEd",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetTools"
}
);
CircularlyReferencedDependentModules.Add("UnrealEd");
}
if (Target.bBuildDeveloperTools)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"MessageLog",
}
);
}
if (Target.Configuration != UnrealTargetConfiguration.Shipping)
{
PrecompileForTargets = PrecompileTargetsType.Any;
}
}
}