You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Graeme.Thornton #autosubmit Renamed UE4Game to UnrealGame. Horde tested (Editor,Tools & Monolithics). Local ShooterGame + Cook + PIE [CL 14990929 by mark lintott in ue5-main branch]
16 lines
374 B
C#
16 lines
374 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class UnrealEditorTarget : TargetRules
|
|
{
|
|
public UnrealEditorTarget( TargetInfo Target ) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
BuildEnvironment = TargetBuildEnvironment.Shared;
|
|
bBuildAllModules = true;
|
|
ExtraModuleNames.Add("UnrealGame");
|
|
}
|
|
}
|