You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UETOOL-3603 #rb richard.talbotwatkin #preflight 60d1e95f78c3b000010f6005 #ROBOMERGE-SOURCE: CL 16743468 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v835-16672529) [CL 16743480 by alexis matte in ue5-release-engine-test branch]
25 lines
461 B
C#
25 lines
461 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class MeshUtilitiesEngine : ModuleRules
|
|
{
|
|
public MeshUtilitiesEngine(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Engine",
|
|
"MeshUtilitiesCommon",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
}
|
|
);
|
|
}
|
|
}
|