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 [CL 16743468 by Alexis Matte in ue5-main 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",
|
|
}
|
|
);
|
|
}
|
|
}
|