mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add debug GUI build to track down crashes.
This commit is contained in:
parent
3c425d66e4
commit
2f2cb0e605
@ -448,6 +448,15 @@ DISTFILES += help/default.css \
|
||||
help/index.qhcp
|
||||
}
|
||||
|
||||
# Create a debug GUI build by adding "CONFIG+=debug" to your qmake command
|
||||
debug {
|
||||
!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
|
||||
QMAKE_LFLAGS += -fsanitize=address
|
||||
}
|
||||
}
|
||||
|
||||
# Turn on unit testing by adding "CONFIG+=test" to your qmake command
|
||||
test {
|
||||
TARGET = test
|
||||
|
Loading…
Reference in New Issue
Block a user