You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #jira UE-177808 #preflight 63f3fb8c90198dffba00cc27 [CL 24331758 by joe kirchoff in ue5-main branch]
28 lines
530 B
C#
28 lines
530 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class LauncherCheck : ModuleRules
|
|
{
|
|
public LauncherCheck(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"HTTP",
|
|
}
|
|
);
|
|
|
|
if (Target.bUseLauncherChecks)
|
|
{
|
|
PublicDefinitions.Add("WITH_LAUNCHERCHECK=1");
|
|
PublicDependencyModuleNames.Add("LauncherPlatform");
|
|
}
|
|
else
|
|
{
|
|
PublicDefinitions.Add("WITH_LAUNCHERCHECK=0");
|
|
}
|
|
}
|
|
}
|