14 lines
305 B
C#
14 lines
305 B
C#
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class CarwatchEditorTarget : TargetRules
|
|
{
|
|
public CarwatchEditorTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
ExtraModuleNames.Add("Carwatch");
|
|
}
|
|
}
|