You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UETOOL-2465 #ROBOMERGE-SOURCE: CL 15366173 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v771-15082668) [CL 15368932 by matt kuhlenschmidt in ue5-main branch]
32 lines
547 B
C#
32 lines
547 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class HardwareTargeting : ModuleRules
|
|
{
|
|
public HardwareTargeting(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"SlateCore",
|
|
"Slate",
|
|
"EditorStyle",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"EditorWidgets",
|
|
"Settings",
|
|
"EngineSettings",
|
|
}
|
|
);
|
|
}
|
|
}
|