Christophe Dumez
17 years ago
6 changed files with 27 additions and 41 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
/* |
||||
-----BEGIN QCMOD----- |
||||
name: Qt >= 4.3 |
||||
-----END QCMOD----- |
||||
*/ |
||||
class qc_qt4 : public ConfObj |
||||
{ |
||||
public: |
||||
qc_qt4(Conf *c) : ConfObj(c) {} |
||||
QString name() const { return "Qt >= 4.3"; } |
||||
QString shortname() const { return "Qt 4.3"; } |
||||
bool exec() |
||||
{ |
||||
return(QT_VERSION >= 0x040300); |
||||
} |
||||
}; |
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
/* |
||||
-----BEGIN QCMOD----- |
||||
name: Qt >= 4.2 |
||||
-----END QCMOD----- |
||||
*/ |
||||
class qc_qt42 : public ConfObj |
||||
{ |
||||
public: |
||||
qc_qt42(Conf *c) : ConfObj(c) {} |
||||
QString name() const { return "Qt >= 4.2"; } |
||||
QString shortname() const { return "qt42"; } |
||||
bool exec() |
||||
{ |
||||
return(QT_VERSION >= 0x040200); |
||||
} |
||||
}; |
Loading…
Reference in new issue