mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 08:02:23 -07:00
14 lines
357 B
C#
14 lines
357 B
C#
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class CogSampleEditorTarget : TargetRules
|
|
{
|
|
public CogSampleEditorTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
|
ExtraModuleNames.Add("CogSample");
|
|
}
|
|
}
|