1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-01 18:55:52 +00:00
qBittorrent/qcm/qtsingleapplication.qcm

27 lines
887 B
Plaintext
Raw Normal View History

2010-10-16 16:41:15 +00:00
/*
-----BEGIN QCMOD-----
2010-12-05 18:14:21 +00:00
name: qtsingleapplication
2010-10-16 16:41:15 +00:00
arg: with-qtsingleapplication=[system|shipped], Use the shipped qtsingleapplication library or the system one
-----END QCMOD-----
*/
class qc_qtsingleapplication : public ConfObj
{
public:
qc_qtsingleapplication(Conf *c) : ConfObj(c) {}
QString name() const { return "qtsingleapplication library"; }
QString shortname() const { return "qtsingleapplication"; }
bool exec(){
QString s;
s = conf->getenv("QC_WITH_QTSINGLEAPPLICATION");
if(s.compare("system", Qt::CaseInsensitive) == 0) {
// System
2010-11-20 17:26:47 +00:00
conf->addExtra("CONFIG += usesystemqtsingleapplication");
2010-10-16 16:41:15 +00:00
printf(" [system] ");
} else {
printf(" [shipped] ");
}
return true;
}
};