2019-12-26 15:33:43 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2018-09-11 14:44:10 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class VirtualTexturingEditor : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public VirtualTexturingEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2024-04-15 19:31:17 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2019-06-11 18:27:07 -04:00
|
|
|
"AppFramework",
|
|
|
|
|
"AssetRegistry",
|
|
|
|
|
"ContentBrowser",
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2024-05-27 08:23:27 -04:00
|
|
|
"EditorWidgets",
|
2019-06-11 18:27:07 -04:00
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
2020-08-11 01:36:57 -04:00
|
|
|
"Landscape",
|
2019-09-23 13:48:03 -04:00
|
|
|
"MaterialEditor",
|
2019-06-11 18:27:07 -04:00
|
|
|
"PlacementMode",
|
|
|
|
|
"PropertyEditor",
|
2019-08-21 08:42:46 -04:00
|
|
|
"RenderCore",
|
|
|
|
|
"Renderer",
|
|
|
|
|
"RHI",
|
2019-06-11 18:27:07 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"UnrealEd",
|
2024-04-15 19:31:17 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
|
}
|
2018-09-11 14:44:10 -04:00
|
|
|
}
|