You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Implements gRPC wrappers for Bazel remote execution api Static libraries are built via vcpkg, currently only supported for Win64 Editor builds #rb Ben.Marsh #preflight 609c65f883595700015753f8 #ROBOMERGE-SOURCE: CL 16313287 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v804-16311228) [CL 16313414 by joe kirchoff in ue5-release-engine-test branch]
19 lines
505 B
C++
19 lines
505 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Object.h"
|
|
#include "RemoteExecutionSettings.generated.h"
|
|
|
|
UCLASS(config = EditorSettings)
|
|
class URemoteExecutionSettings : public UObject
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
public:
|
|
/** The remote executor we prefer to use. */
|
|
UPROPERTY(Config, EditAnywhere, Category = "Remote Execution", meta = (DisplayName = "Preferred Executor", ConfigRestartRequired = true))
|
|
FString PreferredRemoteExecutor;
|
|
};
|