Files
Yotta/Source/Yotta2025Editor.Target.cs

17 lines
462 B
C#
Raw Normal View History

2025-07-03 21:47:28 +02:00
// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class Yotta2025EditorTarget : TargetRules
{
public Yotta2025EditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
2025-07-09 01:47:49 +02:00
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_6;
2025-07-03 21:47:28 +02:00
ExtraModuleNames.AddRange( new string[] { "Yotta2025" } );
}
}