Get the backend as well as the client building/working with msvc.

This commit is contained in:
Adam Treat
2023-05-25 15:22:45 -04:00
parent 63f57635d8
commit 474c5387f9
5 changed files with 15 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ struct ModelInfo {
Q_PROPERTY(bool bestMPT MEMBER bestMPT)
Q_PROPERTY(bool isChatGPT MEMBER isChatGPT)
Q_PROPERTY(QString description MEMBER description)
Q_PROPERTY(QString requires MEMBER requires)
Q_PROPERTY(QString requiresVersion MEMBER requiresVersion)
public:
QString filename;
@@ -36,7 +36,7 @@ public:
bool bestMPT = false;
bool isChatGPT = false;
QString description;
QString requires;
QString requiresVersion;
};
Q_DECLARE_METATYPE(ModelInfo)