You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Jimmy.Andrews #preflight 63640d705c51adc95f994f01 [CL 22969748 by aditya ravichandran in ue5-main branch]
50 lines
1019 B
C#
50 lines
1019 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class GeometryFramework : ModuleRules
|
|
{
|
|
public GeometryFramework(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
//PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
// this is required for raytracing suppport?
|
|
PublicIncludePaths.Add("../Shaders/Shared");
|
|
|
|
// These are required to register filters to the Level Editor Outliner
|
|
if (Target.Type == TargetType.Editor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"EditorWidgets",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"LevelEditor",
|
|
}
|
|
);
|
|
}
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"RenderCore",
|
|
"RHI",
|
|
"PhysicsCore",
|
|
"InteractiveToolsFramework",
|
|
"MeshDescription",
|
|
"StaticMeshDescription",
|
|
"SkeletalMeshDescription",
|
|
"GeometryCore",
|
|
"MeshConversion"
|
|
}
|
|
);
|
|
}
|
|
}
|