mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 16:12:23 -07:00
16 lines
412 B
C#
16 lines
412 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;
|
|
}
|
|
}
|