mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-05-01 20:19:36 +00:00
28 lines
413 B
C
28 lines
413 B
C
#ifndef LIBINFO_H
|
|
#define LIBINFO_H
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
|
|
enum Platform {
|
|
UnknownPlatform = 0x0,
|
|
Win32,
|
|
Win64,
|
|
Unix
|
|
};
|
|
|
|
struct LibInfo {
|
|
Platform platform = Platform::UnknownPlatform;
|
|
QString name;
|
|
QString path;
|
|
QStringList dependncies;
|
|
|
|
bool operator == (const LibInfo& other);
|
|
|
|
QString fullPath();
|
|
|
|
bool isValid() const;
|
|
};
|
|
|
|
#endif // LIBINFO_H
|