EventDemo/Source/EventDemoEditor.Target.cs
Gonzalo Martinez 95e8d75ac6 Initial commit
2025-09-28 19:08:30 -03:00

16 lines
410 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class EventDemoEditorTarget : TargetRules
{
public EventDemoEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_6;
ExtraModuleNames.Add("EventDemo");
}
}