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