15 lines
363 B
C#
15 lines
363 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class SMC_BuildTarget : TargetRules
|
|
{
|
|
public SMC_BuildTarget( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.Latest;
|
|
ExtraModuleNames.AddRange( new string[] { "SMC_Build" } );
|
|
}
|
|
}
|