mirror of
https://github.com/fortressforever/enthusiastic-hat-club.git
synced 2024-11-29 15:31:47 +00:00
26 lines
516 B
C#
26 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" } );
|
||
|
}
|
||
|
}
|