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]
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
|
|
[SupportedConfigurations(UnrealTargetConfiguration.Debug, UnrealTargetConfiguration.Development, UnrealTargetConfiguration.Shipping)]
|
|
public class UninstallHelperTarget : TargetRules
|
|
{
|
|
public UninstallHelperTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Program;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
LinkType = TargetLinkType.Monolithic;
|
|
LaunchModuleName = "UninstallHelper";
|
|
|
|
// Lean and mean
|
|
bBuildDeveloperTools = false;
|
|
|
|
// Currently this app is not linking against the engine, so we'll compile out references from Core to the rest of the engine
|
|
bCompileAgainstEngine = false;
|
|
bCompileAgainstCoreUObject = false;
|
|
bCompileAgainstApplicationCore = false;
|
|
bBuildWithEditorOnlyData =false;
|
|
bCompileICU = false;
|
|
|
|
// UninstallHelper is a console application, not a Windows app (sets entry point to main(), instead of WinMain())
|
|
bIsBuildingConsoleApplication = true;
|
|
}
|
|
}
|