Add globaldefs.pri for setting qmake values in each project
This commit is contained in:
parent
dba479774b
commit
67b0907e52
7 changed files with 41 additions and 41 deletions
13
globaldefs.pri
Normal file
13
globaldefs.pri
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Support debug and release builds from command line for CI
|
||||
CONFIG += debug_and_release
|
||||
|
||||
# Ensure symbols are always generated
|
||||
CONFIG += force_debug_info
|
||||
|
||||
# Disable asserts on release builds
|
||||
CONFIG(release, debug|release) {
|
||||
DEFINES += NDEBUG
|
||||
}
|
||||
|
||||
# Enable ASan if desired
|
||||
#CONFIG += sanitizer sanitize_address
|
||||
Loading…
Add table
Add a link
Reference in a new issue