You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #preflight 60ac346e6905a60001a500cf [CL 16443130 by Joe Kirchoff in ue5-main branch]
11 lines
293 B
C++
11 lines
293 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "RemoteExecutionSettings.h"
|
|
#include "Misc/ConfigCacheIni.h"
|
|
|
|
URemoteExecutionSettings::URemoteExecutionSettings(const FObjectInitializer& ObjectInitializer)
|
|
: Super(ObjectInitializer)
|
|
{
|
|
PreferredRemoteExecutor = TEXT("Bazel");
|
|
}
|