22 lines
663 B
C#
22 lines
663 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.Server)]
|
|
public class TurboLinkTestServerTarget : TargetRules
|
|
{
|
|
public TurboLinkTestServerTarget( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Server;
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "TurboLinkTest" } );
|
|
|
|
//These configurations are invalid for a Linux server build.
|
|
DisablePlugins.Add("WMFMediaPlayer");
|
|
DisablePlugins.Add("AsyncLoadingScreen"); //if you are using this plugin
|
|
DisablePlugins.Add("WindowsMoviePlayer");
|
|
DisablePlugins.Add("MediaFoundationMediaPlayer");
|
|
}
|
|
}
|