mirror of
https://github.com/ConjureETS/Octogonia.git
synced 2026-03-24 11:31:12 +00:00
26 lines
551 B
C#
26 lines
551 B
C#
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class OctogoniaEditorTarget : TargetRules
|
|
{
|
|
public OctogoniaEditorTarget(TargetInfo Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
}
|
|
|
|
//
|
|
// TargetRules interface.
|
|
//
|
|
|
|
public override void SetupBinaries(
|
|
TargetInfo Target,
|
|
ref List<UEBuildBinaryConfiguration> OutBuildBinaryConfigurations,
|
|
ref List<string> OutExtraModuleNames
|
|
)
|
|
{
|
|
OutExtraModuleNames.AddRange( new string[] { "Octogonia" } );
|
|
}
|
|
}
|