RealtimeStyleTransferRuntime/Source/LyraEditor.Target.cs

22 lines
631 B
C#
Raw Permalink Normal View History

2022-05-23 18:41:30 +00:00
// 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;
DefaultBuildSettings = BuildSettingsVersion.V2;
2022-09-13 07:18:28 +00:00
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
2022-05-23 18:41:30 +00:00
ExtraModuleNames.AddRange(new string[] { "LyraGame", "LyraEditor" });
LyraGameTarget.ApplySharedLyraTargetSettings(this);
// This is used for touch screen development along with the "Unreal Remote 2" app
EnablePlugins.Add("RemoteSession");
}
}