mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 18:54:33 +00:00
29 lines
619 B
C++
29 lines
619 B
C++
#ifndef ENVIREMENT_H
|
|
#define ENVIREMENT_H
|
|
|
|
#include <QStringList>
|
|
#include "deploy_global.h"
|
|
|
|
|
|
|
|
class DEPLOYSHARED_EXPORT Envirement
|
|
{
|
|
private:
|
|
QStringList _ignoreEnvList;
|
|
QStringList _deployEnvironment;
|
|
|
|
public:
|
|
Envirement();
|
|
QStringList deployEnvironment() const;
|
|
void setDeployEnvironment(const QStringList &deployEnvironment);
|
|
QStringList ignoreEnvList() const;
|
|
void setIgnoreEnvList(const QStringList &ignoreEnvList);
|
|
|
|
void addEnv(const QString &dir, const QString &appDir, const QString &targetDir);
|
|
|
|
int size() const;
|
|
QString concatEnv() const;
|
|
};
|
|
|
|
#endif // ENVIREMENT_H
|