mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 12:59:56 -07:00
Make sure asserts are disabled in release mode
This commit is contained in:
parent
2f06099518
commit
0241fa7593
2 changed files with 6 additions and 0 deletions
3
configure
vendored
3
configure
vendored
|
@ -345,6 +345,9 @@ public:
|
||||||
// Debug mode
|
// Debug mode
|
||||||
if(!conf->getenv("QC_ENABLE_DEBUG").isEmpty()) {
|
if(!conf->getenv("QC_ENABLE_DEBUG").isEmpty()) {
|
||||||
conf->addExtra("CONFIG += debug");
|
conf->addExtra("CONFIG += debug");
|
||||||
|
} else {
|
||||||
|
conf->addExtra("CONFIG -= debug");
|
||||||
|
conf->addExtra("CONFIG += release");
|
||||||
}
|
}
|
||||||
#ifdef Q_OS_FREEBSD
|
#ifdef Q_OS_FREEBSD
|
||||||
conf->addLib("-lexecinfo");
|
conf->addLib("-lexecinfo");
|
||||||
|
|
|
@ -20,6 +20,9 @@ public:
|
||||||
// Debug mode
|
// Debug mode
|
||||||
if(!conf->getenv("QC_ENABLE_DEBUG").isEmpty()) {
|
if(!conf->getenv("QC_ENABLE_DEBUG").isEmpty()) {
|
||||||
conf->addExtra("CONFIG += debug");
|
conf->addExtra("CONFIG += debug");
|
||||||
|
} else {
|
||||||
|
conf->addExtra("CONFIG -= debug");
|
||||||
|
conf->addExtra("CONFIG += release");
|
||||||
}
|
}
|
||||||
#ifdef Q_OS_FREEBSD
|
#ifdef Q_OS_FREEBSD
|
||||||
conf->addLib("-lexecinfo");
|
conf->addLib("-lexecinfo");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue