16 lines
407 B
C#
16 lines
407 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class TP_BlankEditorTarget : TargetRules
|
|
{
|
|
public TP_BlankEditorTarget( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
|
|
ExtraModuleNames.Add("TP_Blank");
|
|
}
|
|
}
|