Files
UnrealEngine/Samples/Games/Lyra/Source/LyraEditor.Target.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
659 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class LyraEditorTarget : TargetRules
{
public LyraEditorTarget(TargetInfo Target) : base(Target)
{
DefaultBuildSettings = BuildSettingsVersion.V6;
Type = TargetType.Editor;
ExtraModuleNames.AddRange(new string[] { "LyraGame", "LyraEditor" });
if (!bBuildAllModules)
{
NativePointerMemberBehaviorOverride = PointerMemberBehavior.Disallow;
}
LyraGameTarget.ApplySharedLyraTargetSettings(this);
// This is used for touch screen development along with the "Unreal Remote 2" app
EnablePlugins.Add("RemoteSession");
}
}