Files
UnrealEngine/Engine/Source/Programs/SubmitTool/SubmitTool.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

112 lines
5.0 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class SubmitTool : ModuleRules
{
public SubmitTool(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.AddRange(
new string[] {
"Launch",
"TargetPlatform"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"InputCore",
"ApplicationCore",
"Projects",
//"RenderCore", // Stripping both of these for now, this was only used by ShaderValidator but it added 20 mb to the packaged size for a validator that's not in use
//"ShaderCompilerCommon",
"Slate",
"SlateCore",
"StandaloneRenderer",
"StudioTelemetry",
"ToolWidgets",
"SourceControl",
"DesktopPlatform", // Open file dialog
"Settings",
"OutputLog",
"HTTP",
"Json",
"JsonUtilities",
"Analytics",
"AnalyticsET",
"PakFile",
"Virtualization"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PerforceSourceControl",
}
);
if (Target.Configuration != UnrealTargetConfiguration.Shipping)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"SlateReflector",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"SlateReflector",
}
);
}
AddEngineThirdPartyPrivateStaticDependencies(Target, "Perforce");
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnixCommonStartup"
}
);
}
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Common/...*.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Docking/...*.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/Cross_12x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/cursor_cardinal_cross.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/cursor_grab.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/denied_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/Edit/icon_Edit_Duplicate_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/EditorAppIcon.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/ellipsis_12x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/Empty_14x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/eyedropper_16px.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/Help/icon_Help_Documentation_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/Help/icon_Help_support_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_Downloads_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_error_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_help_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_info_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_redo_16px.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_tab_toolbar_16px.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_undo_16px.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/icon_warning_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/PlusSymbol_12x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/refresh_12x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/Star_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Icons/toolbar_expand_16x.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Old/HyperlinkDotted.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Old/HyperlinkUnderline.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Old/White.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Old/Menu_Background.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Old/DashedBorder.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Old/ToolTip_Background.png", StagedFileType.UFS);
RuntimeDependencies.Add("$(EngineDir)/Content/Editor/Slate/Checkerboard.png", StagedFileType.UFS);
}
}