You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-169781 #preflight 63d4247a5354589b5c022e4c #rb brooke.hubert #lockdown jeanmichel.dignard [CL 23923988 by zach rammell in ue5-main branch]
39 lines
768 B
C#
39 lines
768 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class SourceControlWindows : ModuleRules
|
|
{
|
|
public SourceControlWindows(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"InputCore",
|
|
"Engine",
|
|
"Slate",
|
|
"SlateCore",
|
|
"SourceControl",
|
|
"UncontrolledChangelists",
|
|
"UnsavedAssetsTracker",
|
|
"AssetTools",
|
|
"ToolWidgets",
|
|
"EditorFramework",
|
|
"WorkspaceMenuStructure",
|
|
"UnrealEd", // We need this dependency here because we use PackageTools.
|
|
}
|
|
);
|
|
|
|
if(Target.bBuildEditor == true)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ToolMenus"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|