You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-141779 #rb Joe.Kirchoff #rb Johan.Berg #preflight 64380aea7a00790bfd116430 [CL 25101875 by ionut matasaru in ue5-main branch]
25 lines
709 B
C#
25 lines
709 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
|
|
public class UnrealObjectPtrToolTarget : TargetRules
|
|
{
|
|
public UnrealObjectPtrToolTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Program;
|
|
LinkType = TargetLinkType.Modular;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
LaunchModuleName = "UnrealObjectPtrTool";
|
|
|
|
bBuildDeveloperTools = false;
|
|
bBuildWithEditorOnlyData = false;
|
|
bCompileAgainstEngine = false;
|
|
bCompileAgainstCoreUObject = false;
|
|
bCompileAgainstApplicationCore = false;
|
|
bUsesSlate = false;
|
|
bIsBuildingConsoleApplication = true;
|
|
}
|
|
}
|