mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-29 03:04:34 +00:00
115 lines
2.5 KiB
C++
115 lines
2.5 KiB
C++
#ifndef DEPLOYCONFIG_H
|
|
#define DEPLOYCONFIG_H
|
|
#include "deploy_global.h"
|
|
|
|
#include "distromodule.h"
|
|
#include "extra.h"
|
|
#include "ignorerule.h"
|
|
#include "qtdir.h"
|
|
#include "targetinfo.h"
|
|
|
|
class DEPLOYSHARED_EXPORT DeployConfig {
|
|
|
|
public:
|
|
/**
|
|
* @brief depchLimit - recursive search limit
|
|
*/
|
|
int depchLimit = 0;
|
|
|
|
/**
|
|
* @brief deployQml - enable or disable deploing of qml files.
|
|
*/
|
|
bool deployQml = false;
|
|
|
|
/**
|
|
* @brief ignoreList - list with ignore files
|
|
*/
|
|
IgnoreRule ignoreList;
|
|
|
|
/**
|
|
* @brief extraPlugins - list with pathes of extra plugins or plugins names
|
|
*/
|
|
QStringList extraPlugins;
|
|
|
|
/**
|
|
* @brief appDir - it is cqtdeployer library location for ignre cqtdeployr libraries
|
|
*/
|
|
QString appDir;
|
|
|
|
/**
|
|
* @brief qtDir - conteins all qt pathes
|
|
*/
|
|
QtDir qtDir;
|
|
|
|
/**
|
|
* @brief extraPaths - it is list with filters for extra pathes, files or libraries
|
|
*/
|
|
Extra extraPaths;
|
|
|
|
/**
|
|
* @brief envirement - envirement for find libraries
|
|
*/
|
|
Envirement envirement;
|
|
|
|
/**
|
|
* @brief reset config file to default
|
|
*/
|
|
void reset();
|
|
QHash<QString, TargetInfo *> getTargetsListByFilter(const QString& filter);
|
|
|
|
/**
|
|
* @brief targetPath
|
|
* @param target
|
|
* @return path to deployement root dir of target.
|
|
* If target value well be empty then return main root of all targets.
|
|
*/
|
|
QString getTargetDir(const QString& target = "") const;
|
|
void setTargetDir(const QString& target);
|
|
|
|
/**
|
|
* @brief getDistro
|
|
* @param target
|
|
* @return
|
|
*/
|
|
DistroModule getDistro(const QString& target) const;
|
|
|
|
/**
|
|
* @brief getDistroFromPrefix
|
|
* @param prefix
|
|
* @return distro struct from prefix
|
|
*/
|
|
DistroModule getDistroFromPrefix(const QString& prefix) const;
|
|
|
|
const QHash<QString, TargetInfo>& targets() const;
|
|
const QHash<QString, DistroModule>& prefixes() const;
|
|
|
|
QHash<QString, TargetInfo>& targetsEdit();
|
|
QHash<QString, DistroModule>& prefixesEdit();
|
|
|
|
private:
|
|
|
|
/**
|
|
* @brief targets
|
|
* key - path
|
|
* value - create wrapper
|
|
*/
|
|
QHash<QString, TargetInfo> _targets;
|
|
|
|
/**
|
|
* @brief prefixes
|
|
* key - prefix
|
|
* value struvture of prefix
|
|
* default prefix is empty value
|
|
*/
|
|
QHash<QString, DistroModule> _prefixes;
|
|
|
|
/**
|
|
* @brief targetDir - targe directory (this folder conteins all files of distrebution kit)
|
|
*/
|
|
QString targetDir = "";
|
|
|
|
};
|
|
|
|
|
|
#endif // DEPLOYCONFIG_H
|