Files
UnrealEngineUWP/Engine/Source/Editor/VirtualTexturingEditor/VirtualTexturingEditor.Build.cs
john mauney f6d61ab7b6 Update Epic copyright from 2017 to 2018
#jira UE-653339
#RB none

#ROBOMERGE-SOURCE: CL 4477668 in //UE4/Release-4.21/...
#ROBOMERGE-BOT: RELEASE (Release-4.21 -> Release-Staging-4.21)

[CL 4477669 by john mauney in Staging-4.21 branch]
2018-10-16 20:30:57 -04:00

48 lines
1.2 KiB
C#

// Copyright 1998-2018 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",
"MainFrame",
"DesktopPlatform",
"ContentBrowser",
"AssetTools"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"AssetRegistry",
"Core",
"CoreUObject",
"ContentBrowser",
"DesktopPlatform",
"DesktopWidgets",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"UnrealEd",
"PropertyEditor"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"DesktopPlatform",
"MainFrame",
"UnrealEd",
}
);
}
}