Always treat warnings as errors, even (especially!) in release.

Also rename the debug GUI build to "memdebug" to avoid colliding with
Qt's built-in debug build.
This commit is contained in:
sawinglogz 2019-08-04 20:21:02 -05:00
parent 3ec75dec09
commit d6da63bf8c

View File

@ -450,8 +450,13 @@ DISTFILES += help/default.css \
help/index.qhcp
}
# Create a debug GUI build by adding "CONFIG+=debug" to your qmake command
debug {
# Always treat warnings as errors, even (especially!) in release
QMAKE_CFLAGS += -Werror
QMAKE_CXXFLAGS += -Werror
# Create a debug GUI build by adding "CONFIG+=memdebug" to your qmake command
memdebug {
!win32 { # add memory checking on Linux and macOS debug builds
QMAKE_CFLAGS += -g -Werror -fsanitize=address -fno-omit-frame-pointer -fno-common -fsanitize-address-use-after-scope
QMAKE_CXXFLAGS += -g -Werror -fsanitize=address -fno-omit-frame-pointer -fno-common -fsanitize-address-use-after-scope