Project02/TestForAIGC/Source/TestForAIGCEditor.Target.cs

16 lines
416 B
C#
Raw Normal View History

2025-06-05 20:00:00 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class TestForAIGCEditorTarget : TargetRules
{
public TestForAIGCEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_5;
ExtraModuleNames.Add("TestForAIGC");
}
}