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,4 +1,4 @@
// Fill out your copyright notice in the Description page of Project Settings.
// Copyright Amasson, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
@@ -8,8 +8,8 @@ public class AuraTarget : TargetRules
public AuraTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "Aura" } );
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
ExtraModuleNames.Add("Aura");
}
}