Files
TheracUE/Source/MyProjectEditor.Target.cs

16 lines
401 B
C#
Raw Permalink Normal View History

2025-05-06 10:58:12 +01:00
// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class MyProjectEditorTarget : TargetRules
{
public MyProjectEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
ExtraModuleNames.AddRange( new string[] { "MyProject" } );
}
}