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/RaspberryVehicle.Target.cs
2021-08-09 17:12:24 +08:00

15 lines
380 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class RaspberryVehicleTarget : TargetRules
{
public RaspberryVehicleTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "RaspberryVehicle" } );
}
}