mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 17:56:50 +03:00
8a1e79d22f
Move OS specific configuration to separate project files
20 lines
462 B
Text
20 lines
462 B
Text
/*
|
|
-----BEGIN QCMOD-----
|
|
name: Qt >= 4.5
|
|
arg: disable-gui, Disable qBittorrent Graphical user interface for headless running
|
|
-----END QCMOD-----
|
|
*/
|
|
class qc_qt4 : public ConfObj
|
|
{
|
|
public:
|
|
qc_qt4(Conf *c) : ConfObj(c) {}
|
|
QString name() const { return "Qt >= 4.5"; }
|
|
QString shortname() const { return "Qt 4.5"; }
|
|
bool exec()
|
|
{
|
|
if(!conf->getenv("QC_DISABLE_GUI").isEmpty()) {
|
|
conf->addExtra("CONFIG += nox");
|
|
}
|
|
return(QT_VERSION >= 0x040500);
|
|
}
|
|
};
|