You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none #rb jeanmichel.dignard #rnx #preflight 631b7b3cec45fbf3d7807ee1 [CL 21927016 by alexis matte in ue5-main branch]
22 lines
391 B
C#
22 lines
391 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class InterchangeExport : ModuleRules
|
|
{
|
|
public InterchangeExport(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InterchangeCore",
|
|
"InterchangeEngine"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|