This commit is contained in:
2025-11-30 18:34:34 +01:00
9 changed files with 25 additions and 49 deletions

View File

@@ -1,17 +1,18 @@
// Fill out your copyright notice in the Description page of Project Settings.
// Copyright Amasson, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class AuraEditorTarget : TargetRules
{
public AuraEditorTarget(TargetInfo Target) : base(Target)
public AuraEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
bOverrideBuildEnvironment = true;
ExtraModuleNames.AddRange( new string[] { "Aura" } );
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
}
}