fix build error

This commit is contained in:
Arnaud Jamin
2023-10-12 11:26:55 -04:00
parent 293a35af06
commit 7dc83d6601
27 changed files with 154 additions and 46 deletions
@@ -0,0 +1,15 @@
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;
}
}