You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
(Merging CLs 2688852, 2689232 to the main branch) [CL 2690718 by Dmitry Rekman in Main branch]
24 lines
401 B
C#
24 lines
401 B
C#
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class QoSReporter : ModuleRules
|
|
{
|
|
public QoSReporter(TargetInfo Target)
|
|
{
|
|
PublicDependencyModuleNames.Add("Core");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Analytics",
|
|
"HTTP",
|
|
"Json",
|
|
}
|
|
);
|
|
|
|
Definitions.Add("WITH_QOSREPORTER=1");
|
|
}
|
|
}
|
|
}
|