4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-02 12:39:35 +00:00

31 lines
586 B
C
Raw Normal View History

2020-01-13 18:25:03 +03:00
#ifndef TEMPLATEINFO_H
#define TEMPLATEINFO_H
#include <QString>
#include <QHash>
#include <deploy_global.h>
/**
* @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;
QString InstallDirDEB;
2021-09-01 11:25:07 +03:00
QString zipOut;
QString debOut;
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