mirror of
https://github.com/Ed94/UE5_Study.git
synced 2024-11-10 03:44:53 -08:00
16 lines
398 B
C#
16 lines
398 B
C#
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
using UnrealBuildTool;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public class studyEditorTarget : TargetRules
|
||
|
{
|
||
|
public studyEditorTarget( TargetInfo Target) : base(Target)
|
||
|
{
|
||
|
Type = TargetType.Editor;
|
||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
||
|
ExtraModuleNames.Add("study");
|
||
|
}
|
||
|
}
|