mirror of
https://github.com/QuasarApp/qca.git
synced 2025-04-28 04:24:32 +00:00
require qt 4.1
svn path=/trunk/kdesupport/qca/; revision=513018
This commit is contained in:
parent
7722e56837
commit
9a12f34442
3
qca.qc
3
qca.qc
@ -5,6 +5,9 @@
|
||||
<libdir/>
|
||||
<datadir/>
|
||||
<moddir>.</moddir>
|
||||
<dep type='qt41'>
|
||||
<required/>
|
||||
</dep>
|
||||
<dep type='certstore'>
|
||||
<required/>
|
||||
</dep>
|
||||
|
20
qt41.qcm
Normal file
20
qt41.qcm
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
-----BEGIN QCMOD-----
|
||||
name: Qt >= 4.1
|
||||
-----END QCMOD-----
|
||||
*/
|
||||
class qc_qt41 : public ConfObj
|
||||
{
|
||||
public:
|
||||
qc_qt41(Conf *c) : ConfObj(c) {}
|
||||
QString name() const { return "Qt >= 4.1"; }
|
||||
QString shortname() const { return "qt41"; }
|
||||
bool exec()
|
||||
{
|
||||
conf->debug(QString("QT_VERSION = %1").arg(QT_VERSION));
|
||||
if(QT_VERSION >= 0x040100)
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user