Ejemplo n.º 1
0
 public BenchmarkSingleCompileTask(FileReference InProjectFile, string InTarget, UnrealTargetPlatform InPlatform, FileReference InSourceFile, BuildOptions InOptions)
     : base(InProjectFile, InTarget, InPlatform, InOptions)
 {
     PreTask    = new BenchmarkBuildTask(InProjectFile, InTarget, InPlatform, InOptions);
     SourceFile = InSourceFile;
     TaskModifiers.Add("singlecompile");
 }
 public BenchmarkNopCompileTask(FileReference InProjectFile, string InTarget, UnrealTargetPlatform InPlatform, BuildOptions InOptions)
     : base(InProjectFile, InTarget, InPlatform, InOptions)
 {
     PreTask = new BenchmarkBuildTask(InProjectFile, InTarget, InPlatform, InOptions);
     TaskModifiers.Add("nopcompile");
 }