Files
UnrealEngineUWP/Engine/Source/Programs/UninstallHelper/UninstallHelper.Build.cs
zach harris 166eb97912 Adding a program that can be used to delete the PersistentDownloadDir on Windows at uninstall time.
#rb james.doverspike

[CL 24831863 by zach harris in ue5-main branch]
2023-03-29 02:28:20 -04:00

18 lines
382 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UninstallHelper : ModuleRules
{
public UninstallHelper(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.Add("Runtime/Launch/Public");
PrivateIncludePaths.Add("Runtime/Launch/Private");
PrivateDependencyModuleNames.AddRange(new []
{
"Core", "Projects"
});
}
}