Added --enable-debug switch to the configure script and remove related code from the project file

This commit is contained in:
Christophe Dumez 2011-01-01 17:03:23 +00:00
commit 2b179a53bf
3 changed files with 25 additions and 5 deletions

View file

@ -2,6 +2,7 @@
-----BEGIN QCMOD-----
name: Qt >= 4.5
arg: disable-gui, Disable qBittorrent Graphical user interface for headless running
arg: enable-debug, Enable debug mode
-----END QCMOD-----
*/
class qc_qt4 : public ConfObj
@ -12,9 +13,14 @@ public:
QString shortname() const { return "Qt 4.5"; }
bool exec()
{
// NOX mode
if(!conf->getenv("QC_DISABLE_GUI").isEmpty()) {
conf->addExtra("CONFIG += nox");
}
}
// Debug mode
if(!conf->getenv("QC_ENABLE_DEBUG").isEmpty()) {
conf->addExtra("CONFIG += debug");
}
return(QT_VERSION >= 0x040500);
}
};