You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial [FYI] Peter.Engstrom #preflight 62617f306119a1a496ab232c #ROBOMERGE-AUTHOR: lauren.barnes #ROBOMERGE-SOURCE: CL 19852810 via CL 19856252 via CL 19862190 via CL 19862206 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v940-19807014) [CL 19870943 by lauren barnes in ue5-main branch]
40 lines
687 B
C#
40 lines
687 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatforms("Linux")]
|
|
public class SlateFontDialog : ModuleRules
|
|
{
|
|
public SlateFontDialog(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"AppFramework",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"TargetPlatform"
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"DesktopPlatform"
|
|
}
|
|
);
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, new string[]
|
|
{
|
|
"FreeType2",
|
|
"FontConfig"
|
|
});
|
|
}
|
|
}
|