mirror of
https://github.com/fortressforever/enthusiastic-hat-club.git
synced 2024-11-25 13:40:59 +00:00
25 lines
516 B
C#
25 lines
516 B
C#
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class FFTarget : TargetRules
|
|
{
|
|
public FFTarget(TargetInfo Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
}
|
|
|
|
//
|
|
// TargetRules interface.
|
|
//
|
|
|
|
public override void SetupBinaries(
|
|
TargetInfo Target,
|
|
ref List<UEBuildBinaryConfiguration> OutBuildBinaryConfigurations,
|
|
ref List<string> OutExtraModuleNames
|
|
)
|
|
{
|
|
OutExtraModuleNames.AddRange( new string[] { "FF" } );
|
|
}
|
|
}
|