16 lines
320 B
C#
16 lines
320 B
C#
|
|
// Copyright Echo Devgroup
|
||
|
|
|
||
|
|
using UnrealBuildTool;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
public class AuraTarget : TargetRules
|
||
|
|
{
|
||
|
|
public AuraTarget(TargetInfo Target) : base(Target)
|
||
|
|
{
|
||
|
|
Type = TargetType.Game;
|
||
|
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
||
|
|
|
||
|
|
ExtraModuleNames.AddRange( new string[] { "Aura" } );
|
||
|
|
}
|
||
|
|
}
|