14 lines
350 B
C#
14 lines
350 B
C#
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class CardinalTarget : TargetRules
|
|
{
|
|
public CardinalTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
ExtraModuleNames.Add("Cardinal");
|
|
bUsesSteam = true;
|
|
// Added for 4.26
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
}
|
|
}
|