You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[REVIEW] [at]alex.nischwitz [at]ben.woodhouse [at]matt.hoffman [at]zach.bethel [CL 26652729 by ross goldblum in ue5-main branch]
61 lines
1.2 KiB
C#
61 lines
1.2 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class VREditor : ModuleRules
|
|
{
|
|
public VREditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
System.IO.Path.Combine(GetModuleDirectory("LevelEditor"), "Private"),
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AppFramework",
|
|
"Core",
|
|
"CoreUObject",
|
|
"ApplicationCore",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"RenderCore",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"UMG",
|
|
"LevelEditor",
|
|
"HeadMountedDisplay",
|
|
"Analytics",
|
|
"LevelSequence",
|
|
"Sequencer",
|
|
"Projects",
|
|
"ToolMenus",
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"ViewportInteraction",
|
|
"HeadMountedDisplay"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetTools",
|
|
"PlacementMode",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"PlacementMode"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|