lyra_game_ue/Source/LyraEditor.Target.cs
Goran Lazarevski 3bcab085f8 Initial commit
2025-03-20 11:06:26 +01:00

25 lines
609 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)
{
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");
}
}