Files
UnrealEngineUWP/Engine/Plugins/Interchange/Runtime/Source/Export/InterchangeExport.Build.cs
alexis matte 862785cc6e Interchange: Move files out of experimental
#jira none
#rb jeanmichel.dignard
#rnx
#preflight 631b7b3cec45fbf3d7807ee1

[CL 21927016 by alexis matte in ue5-main branch]
2022-09-09 16:13:32 -04:00

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"
}
);
}
}
}