Update to 5.4

This commit is contained in:
2024-08-13 20:40:18 +02:00
parent 67aa1bac76
commit fe36c76b14
11 changed files with 28 additions and 53 deletions

View File

@@ -1,15 +1,15 @@
// 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;
ExtraModuleNames.AddRange( new string[] { "Aura" } );
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
ExtraModuleNames.Add("Aura");
}
}