You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Sebastien.Lussier #changelist validated [CL 16224279 by luc eygasier in ue5-main branch]
43 lines
909 B
C#
43 lines
909 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",
|
|
"UncontrolledChangelists",
|
|
"AssetTools",
|
|
"EditorFramework",
|
|
"WorkspaceMenuStructure",
|
|
"DeveloperSettings",
|
|
"UnrealEd" // We need this dependency here because we use PackageTools.
|
|
}
|
|
);
|
|
|
|
if(Target.bBuildEditor == true)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ToolMenus"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|