mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-16 16:27:59 +00:00
13 lines
No EOL
311 B
Text
13 lines
No EOL
311 B
Text
# 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 |