Created
July 25, 2017 21:26
-
-
Save ThomasAunvik/74be951932543635e934019c1b075300 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnrealBuildTool; | |
using System.Collections.Generic; | |
[SupportedPlatforms(UnrealPlatformClass.Server)] | |
public class SalvosCPPServerTarget : TargetRules | |
{ | |
public SalvosCPPServerTarget(TargetInfo Target) : base(Target) | |
{ | |
Type = TargetType.Server; | |
ExtraModuleNames.Add("SalvosCPP"); | |
UEBuildConfiguration.bUseLoggingInShipping = true; // If you want logging in shipping build | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment