Illusion-UE5/hwanyoung2/Source/hwanyoung2.Target.cs
2025-04-09 02:35:22 +09:00

19 lines
571 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class hwanyoung2Target : TargetRules
{
public hwanyoung2Target(TargetInfo Target) : base(Target)
{
WindowsPlatform.Compiler = WindowsCompiler.VisualStudio2022;
WindowsPlatform.CompilerVersion = "14.34.31933"; // 설치된 정확한 버전 번호로 바꿔주세요
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V2;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
ExtraModuleNames.Add("hwanyoung2");
}
}