18 lines
472 B
C#
18 lines
472 B
C#
|
|
// 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;
|
||
|
|
//IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
||
|
|
|
||
|
|
ExtraModuleNames.AddRange( new string[] { "ProjectEleri", "PaperZD" } );
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|