mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 10:14:32 +00:00
35 lines
717 B
C++
35 lines
717 B
C++
//#
|
|
//# Copyright (C) 2018-2019 QuasarApp.
|
|
//# Distributed under the lgplv3 software license, see the accompanying
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
//# of this license document, but changing it is not allowed.
|
|
//#
|
|
|
|
#ifndef METAFILEMANAGER_H
|
|
#define METAFILEMANAGER_H
|
|
|
|
#include <QString>
|
|
|
|
class FileManager;
|
|
|
|
class MetaFileManager
|
|
{
|
|
|
|
private:
|
|
bool createRunScriptWindows(const QString &target);
|
|
bool createRunScriptLinux(const QString &target);
|
|
|
|
|
|
bool createRunScript(const QString &target);
|
|
bool createQConf();
|
|
|
|
FileManager* _fileManager = nullptr;
|
|
|
|
public:
|
|
MetaFileManager(FileManager* manager);
|
|
|
|
void createRunMetaFiles();
|
|
};
|
|
|
|
#endif // METAFILEMANAGER_H
|