AHNDEditor.Target.cs 358 B

123456789101112131415
  1. // Copyright Epic Games, Inc. All Rights Reserved.
  2. using UnrealBuildTool;
  3. using System.Collections.Generic;
  4. public class AHNDEditorTarget : TargetRules
  5. {
  6. public AHNDEditorTarget( TargetInfo Target) : base(Target)
  7. {
  8. Type = TargetType.Editor;
  9. DefaultBuildSettings = BuildSettingsVersion.V2;
  10. ExtraModuleNames.AddRange( new string[] { "AHND" } );
  11. }
  12. }