Files
UnrealEngineUWP/Engine/Source/Runtime/Analytics/QoSReporter/QoSReporter.Build.cs
Dmitry Rekman ee863dea42 QoS metrics: add generic module (OP-1132).
(Merging CLs 2688852, 2689232 to the main branch)

[CL 2690718 by Dmitry Rekman in Main branch]
2015-09-14 15:26:41 -04:00

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");
}
}
}