Files
UnrealEngineUWP/Engine/Source/Programs/UnrealPackageTool/UnrealPackageTool.Target.cs
robert millar 6723a790d6 New UnrealPackageTool mode for dumping package info
#rb Matt.Peters, will.brown

[CL 27806790 by robert millar in ue5-main branch]
2023-09-12 16:29:59 -04:00

34 lines
878 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class UnrealPackageToolTarget : TargetRules
{
public UnrealPackageToolTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
LaunchModuleName = "UnrealPackageTool";
DefaultBuildSettings = BuildSettingsVersion.Latest;
// Required for CLI11 library
bForceEnableRTTI = true;
bForceEnableExceptions = true;
bBuildDeveloperTools = false;
bBuildWithEditorOnlyData = true;
// Required for asset registry module
bCompileAgainstApplicationCore = true;
bCompileAgainstCoreUObject = true;
bCompileAgainstEngine = false;
bCompileICU = false;
bIsBuildingConsoleApplication = true;
bEnableTrace = true;
}
}