You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-143220 #rb michael.galetzka #preflight skip [CL 22262785 by mateo egey in ue5-main branch]
29 lines
566 B
C#
29 lines
566 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class GeometryCacheEd : ModuleRules
|
|
{
|
|
public GeometryCacheEd(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"Slate",
|
|
"SlateCore",
|
|
"InputCore",
|
|
"RenderCore",
|
|
"RHI",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"AssetTools",
|
|
"GeometryCache",
|
|
"ToolMenus",
|
|
"NiagaraEditor"
|
|
}
|
|
);
|
|
}
|
|
}
|