2019-12-08 13:57:20 +03:00
|
|
|
//#
|
|
|
|
//# Copyright (C) 2018-2020 QuasarApp.
|
|
|
|
//# Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
//# Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
//# of this license document, but changing it is not allowed.
|
|
|
|
//#
|
|
|
|
|
|
|
|
#ifndef TARGETINFO_H
|
|
|
|
#define TARGETINFO_H
|
|
|
|
|
2019-12-09 17:28:56 +03:00
|
|
|
#include "distrostruct.h"
|
2019-12-08 13:57:20 +03:00
|
|
|
#include "libinfo.h"
|
|
|
|
|
|
|
|
class DEPLOYSHARED_EXPORT TargetInfo: public LibInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TargetInfo();
|
|
|
|
|
2020-02-26 16:51:28 +03:00
|
|
|
QString getPackage() const;
|
|
|
|
void setPackage(const QString &value);
|
2019-12-08 13:57:20 +03:00
|
|
|
|
|
|
|
private:
|
2020-02-26 16:51:28 +03:00
|
|
|
QString package = "";
|
2019-12-08 13:57:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TARGETINFO_H
|