2020-01-13 18:25:03 +03:00
|
|
|
#ifndef TEMPLATEINFO_H
|
|
|
|
#define TEMPLATEINFO_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QHash>
|
|
|
|
#include <deploy_global.h>
|
|
|
|
|
2021-07-24 18:10:56 +03:00
|
|
|
/**
|
|
|
|
* @brief The TemplateInfo struct This structure contains information about distribution packages.
|
|
|
|
*/
|
2020-01-13 18:25:03 +03:00
|
|
|
struct DEPLOYSHARED_EXPORT TemplateInfo
|
|
|
|
{
|
|
|
|
QString Name;
|
|
|
|
QString Description;
|
|
|
|
QString Version;
|
|
|
|
QString ReleaseData;
|
2020-01-15 11:50:30 +03:00
|
|
|
QString Publisher;
|
2020-11-10 14:07:54 +03:00
|
|
|
QString Homepage;
|
2020-12-03 20:00:14 +03:00
|
|
|
QString Prefix;
|
2021-07-24 18:10:56 +03:00
|
|
|
QString InstallDirDEB;
|
2021-09-01 11:25:07 +03:00
|
|
|
QString zipOut;
|
|
|
|
QString debOut;
|
|
|
|
|
2021-07-24 18:10:56 +03:00
|
|
|
QString InstallDeirQIFW() const;
|
2020-01-15 11:50:30 +03:00
|
|
|
|
2020-01-13 18:25:03 +03:00
|
|
|
QHash<QString, QString> Custom;
|
2020-12-02 17:53:14 +03:00
|
|
|
|
2020-01-13 18:25:03 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TEMPLATEINFO_H
|