23 lines
404 B
C#
23 lines
404 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class LyraGameEOSTarget : LyraGameTarget
|
|
{
|
|
public LyraGameEOSTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
CustomConfig = "EOS";
|
|
|
|
EnablePlugins.AddRange(
|
|
new string[]
|
|
{
|
|
"OnlineServicesEOS",
|
|
"OnlineSubsystemEOS"
|
|
}
|
|
);
|
|
|
|
OptionalPlugins.Add("EOSReservedHooks");
|
|
}
|
|
}
|