RaspberryVehicle/Source/RaspberryVehicleEditor.Targ...

15 lines
394 B
C#
Raw Normal View History

2021-08-09 09:12:24 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class RaspberryVehicleEditorTarget : TargetRules
{
public RaspberryVehicleEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "RaspberryVehicle" } );
}
}