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 635c0d7cae6840072d339bd4 [CL 22831760 by nathan mitchell in ue5-main branch]
35 lines
819 B
C#
35 lines
819 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class MeshModelingToolsEditorOnly : ModuleRules
|
|
{
|
|
public MeshModelingToolsEditorOnly(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"InteractiveToolsFramework",
|
|
"GeometryCore",
|
|
"MeshModelingTools",
|
|
"ModelingComponents",
|
|
"ModelingOperatorsEditorOnly",
|
|
"ModelingOperators",
|
|
"PropertyEditor",
|
|
"DynamicMesh",
|
|
// ... add other public dependencies that you statically link with here ...
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"CoreUObject",
|
|
// ... add private dependencies that you statically link with here ...
|
|
}
|
|
);
|
|
}
|
|
} |