You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Tidied up CSV reporting of values to be more spreadsheet friendly Allow -AllCompile to be used independently of -editor / -client #rb na #preflgiht https://horde.devtools.epicgames.com/job/6312a54fab25bb91f5a7e838 [CL 21776180 by andrew grant in ue5-main branch]
35 lines
749 B
C#
35 lines
749 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using AutomationTool;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using EpicGames.Core;
|
|
using UnrealBuildTool;
|
|
|
|
namespace AutomationTool.Benchmark
|
|
{
|
|
class BenchmarkNopCompileTask : BenchmarkBuildTask
|
|
{
|
|
|
|
|
|
private string _TaskName;
|
|
public override string TaskName
|
|
{
|
|
get
|
|
{
|
|
return _TaskName;
|
|
}
|
|
}
|
|
|
|
public BenchmarkNopCompileTask(FileReference InProjectFile, string InTarget, UnrealTargetPlatform InPlatform, XGETaskOptions InXGEOptions)
|
|
: base(InProjectFile, InTarget, InPlatform, InXGEOptions, "", 0)
|
|
{
|
|
_TaskName = string.Format("Nop {0} {1}", InTarget, InPlatform);
|
|
}
|
|
}
|
|
}
|