17 lines
455 B
C#
17 lines
455 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class FirstPersonDemoTarget : TargetRules
|
|
{
|
|
public FirstPersonDemoTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V6;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
|
|
ExtraModuleNames.Add("FirstPersonDemo");
|
|
CppStandard = CppStandardVersion.Cpp20;
|
|
}
|
|
}
|