initial commit
This commit is contained in:
commit
9d20827c46
2469 changed files with 470994 additions and 0 deletions
25
qcm/universal.qcm
Normal file
25
qcm/universal.qcm
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
-----BEGIN QCMOD-----
|
||||
name: Mac OS X universal binary support
|
||||
-----END QCMOD-----
|
||||
*/
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
// qc_universal
|
||||
//----------------------------------------------------------------------------
|
||||
class qc_universal : public ConfObj
|
||||
{
|
||||
public:
|
||||
qc_universal(Conf *c) : ConfObj(c) {}
|
||||
QString name() const { return "universal binary support"; }
|
||||
QString shortname() const { return "universal"; }
|
||||
QString checkString() const { return QString(); }
|
||||
|
||||
bool exec()
|
||||
{
|
||||
#ifdef Q_WS_MAC
|
||||
conf->addExtra("CONFIG += qc_universal");
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
};
|
||||
Reference in a new issue