2026-07-11 10:43:52 +02:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
public class ProjectEleriTarget : TargetRules
|
|
|
|
|
{
|
|
|
|
|
public ProjectEleriTarget(TargetInfo Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
Type = TargetType.Game;
|
|
|
|
|
DefaultBuildSettings = BuildSettingsVersion.Latest;
|
2026-07-14 21:47:46 +02:00
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_8;
|
2026-07-11 10:43:52 +02:00
|
|
|
|
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "ProjectEleri", "PaperZD" } );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|