mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 23:07:59 +00:00
Compile with -O2 in release mode and -O1 in debug mode
This commit is contained in:
parent
1bfc181cb2
commit
89ecdca5e7
@ -19,17 +19,18 @@ DEFINES += VERSION_BUGFIX=0
|
|||||||
contains(DEBUG_MODE, 1){
|
contains(DEBUG_MODE, 1){
|
||||||
CONFIG += debug
|
CONFIG += debug
|
||||||
CONFIG -= release
|
CONFIG -= release
|
||||||
|
QMAKE_CXXFLAGS_RELEASE += -O1
|
||||||
|
QMAKE_CXXFLAGS_DEBUG += -O1
|
||||||
message(Debug build!)
|
message(Debug build!)
|
||||||
}
|
}
|
||||||
contains(DEBUG_MODE, 0){
|
contains(DEBUG_MODE, 0){
|
||||||
CONFIG -= debug
|
CONFIG -= debug
|
||||||
CONFIG += release
|
CONFIG += release
|
||||||
|
QMAKE_CXXFLAGS_RELEASE += -O2
|
||||||
|
QMAKE_CXXFLAGS_DEBUG += -O2
|
||||||
message(Release build!)
|
message(Release build!)
|
||||||
}
|
}
|
||||||
|
|
||||||
QMAKE_CXXFLAGS_RELEASE += -fwrapv -O2
|
|
||||||
QMAKE_CXXFLAGS_DEBUG += -fwrapv -O2
|
|
||||||
|
|
||||||
CONFIG += link_pkgconfig
|
CONFIG += link_pkgconfig
|
||||||
PKGCONFIG += libtorrent libccext2 libccgnu2
|
PKGCONFIG += libtorrent libccext2 libccgnu2
|
||||||
QT += network xml
|
QT += network xml
|
||||||
|
Loading…
Reference in New Issue
Block a user