mirror of
https://github.com/Ed94/Cog.git
synced 2026-08-05 15:18:47 +00:00
16 lines
408 B
C#
16 lines
408 B
C#
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class CogSampleTarget : TargetRules
|
|
{
|
|
public CogSampleTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
|
ExtraModuleNames.Add("CogSample");
|
|
bUseUnityBuild = false;
|
|
bUsePCHFiles = false;
|
|
}
|
|
}
|