You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-147048 #review-21105857 @jack.porter #preflight 62d0f0737e1c26dcd7e95ace [CL 21157604 by adam kinge in ue5-main branch]
18 lines
446 B
C#
18 lines
446 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.All)]
|
|
public class UnrealGameTarget : TargetRules
|
|
{
|
|
public UnrealGameTarget( TargetInfo Target ) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
BuildEnvironment = TargetBuildEnvironment.Shared;
|
|
|
|
ExtraModuleNames.Add("UnrealGame");
|
|
}
|
|
}
|