Add a MMC-depend field (soft/hard) for version checking
This commit is contained in:
parent
790402bdce
commit
ece826bdbc
8 changed files with 351 additions and 32 deletions
|
@ -60,12 +60,21 @@ private:
|
|||
|
||||
public:
|
||||
QStringList extract_excludes;
|
||||
QString minVersion;
|
||||
|
||||
enum DependType
|
||||
{
|
||||
Soft,
|
||||
Hard
|
||||
};
|
||||
DependType dependType;
|
||||
|
||||
public:
|
||||
/// Constructor
|
||||
OneSixLibrary(const QString &name)
|
||||
OneSixLibrary(const QString &name, const DependType type = Soft)
|
||||
{
|
||||
m_name = name;
|
||||
dependType = type;
|
||||
}
|
||||
|
||||
/// Returns the raw name field
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue