You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#ROBOMERGE-SOURCE: CL 8126213 via CL 8132037 #ROBOMERGE-BOT: (v401-8057353) [CL 8156568 by jeremy moore in Main branch]
46 lines
953 B
C#
46 lines
953 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class VirtualTexturingEditor : ModuleRules
|
|
{
|
|
public VirtualTexturingEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.Add("Editor/VirtualTexturingEditor/Private");
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetRegistry",
|
|
"AssetTools",
|
|
"ContentBrowser",
|
|
"DesktopPlatform",
|
|
"MainFrame",
|
|
"Renderer",
|
|
"UnrealEd",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AppFramework",
|
|
"AssetRegistry",
|
|
"ContentBrowser",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DesktopPlatform",
|
|
"DesktopWidgets",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"InputCore",
|
|
"PlacementMode",
|
|
"PropertyEditor",
|
|
"RenderCore",
|
|
"Renderer",
|
|
"RHI",
|
|
"Slate",
|
|
"SlateCore",
|
|
"UnrealEd",
|
|
}
|
|
);
|
|
}
|
|
} |