25 lines
547 B
C++
25 lines
547 B
C++
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#if PLATFORM_TOOLS_LINUX
|
|
|
|
#include "../../PlatformTools.h"
|
|
|
|
/// <summary>
|
|
/// The Linux platform support tools.
|
|
/// </summary>
|
|
class LinuxPlatformTools : public PlatformTools
|
|
{
|
|
public:
|
|
|
|
// [PlatformTools]
|
|
const Char* GetDisplayName() const override;
|
|
const Char* GetName() const override;
|
|
PlatformType GetPlatform() const override;
|
|
ArchitectureType GetArchitecture() const override;
|
|
bool OnDeployBinaries(CookingData& data) override;
|
|
};
|
|
|
|
#endif
|