Files
UnrealEngineUWP/Engine/Source/Programs/NativePointerUpgradeTool/NativePointerUpgradeTool.Target.cs
Zousar Shaker 77d13185b7 Copying //UE5/Dev-Cooker@14539516 to Main (//UE5/Main)
[CL 14539954 by Zousar Shaker in ue5-main branch]
2020-10-21 17:56:05 -04:00

25 lines
699 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class NativePointerUpgradeToolTarget : TargetRules
{
public NativePointerUpgradeToolTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Modular;
LaunchModuleName = "NativePointerUpgradeTool";
bBuildDeveloperTools = false;
bUseMallocProfiler = false;
bBuildWithEditorOnlyData = false;
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = false;
bCompileAgainstApplicationCore = false;
bUsesSlate = false;
bIsBuildingConsoleApplication = true;
}
}