2020-05-22 09:57:29 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
/*=============================================================================
|
2021-06-14 13:42:17 -04:00
|
|
|
LinuxArm64NoEditorTargetPlatformModule.cpp: Implements the FLinuxArm64NoEditorTargetPlatformModule class.
|
2020-05-22 09:57:29 -04:00
|
|
|
=============================================================================*/
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "Modules/ModuleManager.h"
|
2024-02-12 16:14:58 -05:00
|
|
|
|
2020-05-22 09:57:29 -04:00
|
|
|
#include "Interfaces/ITargetPlatformModule.h"
|
2024-02-12 16:14:58 -05:00
|
|
|
|
|
|
|
|
#include "LinuxTargetDevice.h"
|
|
|
|
|
#include "LinuxTargetPlatform.h"
|
|
|
|
|
|
2020-05-22 09:57:29 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Module for the Linux target platforms
|
|
|
|
|
*/
|
2021-06-14 13:42:17 -04:00
|
|
|
class FLinuxArm64TargetPlatformModule
|
2020-05-22 09:57:29 -04:00
|
|
|
: public ITargetPlatformModule
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
virtual void GetTargetPlatforms(TArray<ITargetPlatform*>& TargetPlatforms) override
|
|
|
|
|
{
|
2024-02-12 16:14:58 -05:00
|
|
|
// Game TP
|
|
|
|
|
TargetPlatforms.Add(new TLinuxTargetPlatform<FLinuxPlatformProperties<false, false, false, true> >());
|
|
|
|
|
// Server TP
|
|
|
|
|
TargetPlatforms.Add(new TLinuxTargetPlatform<FLinuxPlatformProperties<false, true, false, true> >());
|
|
|
|
|
// Client TP
|
|
|
|
|
TargetPlatforms.Add(new TLinuxTargetPlatform<FLinuxPlatformProperties<false, false, true, true> >());
|
2020-05-22 09:57:29 -04:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2021-06-14 13:42:17 -04:00
|
|
|
IMPLEMENT_MODULE(FLinuxArm64TargetPlatformModule, LinuxArm64TargetPlatform);
|