Skip to content

Instantly share code, notes, and snippets.

@ThomasAunvik
Created July 25, 2017 21:26
Show Gist options
  • Save ThomasAunvik/74be951932543635e934019c1b075300 to your computer and use it in GitHub Desktop.
Save ThomasAunvik/74be951932543635e934019c1b075300 to your computer and use it in GitHub Desktop.
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