Asset: Added the upgraded UE4.26 to UE5.1 project files

This commit is contained in:
parvan 2025-12-21 13:00:04 -06:00
parent 5a16829092
commit abca2aa92c
7952 changed files with 187142 additions and 0 deletions

View file

@ -0,0 +1,13 @@
using UnrealBuildTool;
using System.Collections.Generic;
public class CardinalServerTarget : TargetRules
{
public CardinalServerTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Server;
ExtraModuleNames.Add("Cardinal");
// Added for 4.26
DefaultBuildSettings = BuildSettingsVersion.V2;
}
}