mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 02:04:33 +00:00
31 lines
586 B
C
31 lines
586 B
C
#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.
|
|
*/
|
|
struct DEPLOYSHARED_EXPORT TemplateInfo
|
|
{
|
|
QString Name;
|
|
QString Description;
|
|
QString Version;
|
|
QString ReleaseData;
|
|
QString Publisher;
|
|
QString Homepage;
|
|
QString Prefix;
|
|
QString InstallDirDEB;
|
|
QString zipOut;
|
|
QString debOut;
|
|
|
|
QString InstallDeirQIFW() const;
|
|
|
|
QHash<QString, QString> Custom;
|
|
|
|
};
|
|
|
|
#endif // TEMPLATEINFO_H
|