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