13 lines
No EOL
345 B
C#
13 lines
No EOL
345 B
C#
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class CardinalServerTarget : TargetRules
|
|
{
|
|
public CardinalServerTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Server;
|
|
ExtraModuleNames.Add("Cardinal");
|
|
// Added for 4.26
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
}
|
|
} |