You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- New target platforms (LinuxNoEditor for client+server, LinuxClient for client, Linux for editor, LinuxServer for dedicated server - mirroring other platforms). - Preliminary support for gcc in the toolchain (and some safe fixes in code). - No more lowercasing when accessing files on Linux, tread carefully. - Changes needed for native compilation and other minor improvements. #codereview Josh.Adams, Michael.Liebenow, Steve.Robbs [CL 2067133 by Dmitry Rekman in Main branch]
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
// Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
LinuxTargetDevice.cpp: Implements the LinuxTargetDevice class.
|
|
=============================================================================*/
|
|
|
|
#include "LinuxNoEditorTargetPlatformPrivatePCH.h"
|
|
|
|
#include "LinuxTargetDevice.h"
|
|
|
|
|
|
|
|
/* ITargetDevice interface
|
|
*****************************************************************************/
|
|
|
|
bool FLinuxTargetDevice::Deploy( const FString& SourceFolder, FString& OutAppId )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int32 FLinuxTargetDevice::GetProcessSnapshot( TArray<FTargetDeviceProcessInfo>& OutProcessInfos )
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bool FLinuxTargetDevice::Launch( const FString& AppId, EBuildConfigurations::Type BuildConfiguration, EBuildTargets::Type BuildTarget, const FString& Params, uint32* OutProcessId )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FLinuxTargetDevice::Reboot( bool bReconnect)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FLinuxTargetDevice::Run( const FString& ExecutablePath, const FString& Params, uint32* OutProcessId )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FLinuxTargetDevice::SupportsFeature( ETargetDeviceFeatures::Type Feature ) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FLinuxTargetDevice::SupportsSdkVersion( const FString& VersionString ) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void FLinuxTargetDevice::SetUserCredentials( const FString & InUserName, const FString & InUserPassword )
|
|
{
|
|
UserName = InUserName;
|
|
UserPassword = InUserPassword;
|
|
}
|
|
|
|
bool FLinuxTargetDevice::GetUserCredentials( FString & OutUserName, FString & OutUserPassword )
|
|
{
|
|
OutUserName = UserName;
|
|
OutUserPassword = UserPassword;
|
|
return true;
|
|
}
|
|
|
|
bool FLinuxTargetDevice::TerminateProcess( const int32 ProcessId )
|
|
{
|
|
return false;
|
|
}
|
|
|