This repository has been archived on 2024-11-16. You can view files and clone it, but cannot push or open issues or pull requests.
RaspberryVehicle/Source/RaspberryVehicleEditor.Target.cs
2021-08-09 17:12:24 +08:00

15 lines
394 B
C#

// 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" } );
}
}