Initial commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
// 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");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user