Don't export everything for nice stack traces in release builds

Because this blows up the size of the executable. This was meant to be done only with debug builds anyway. The release stack traces are all sorts of wonky anyway, no need to complicate them further.
This commit is contained in:
Tamás Bálint Misius 2024-01-13 22:44:55 +01:00
parent 45df2ba080
commit d21c23b46e
No known key found for this signature in database
GPG Key ID: 5B472A12F6ECA9F2

View File

@ -84,7 +84,7 @@ subdir('stacktrace')
if use_bluescreen
common_files += stacktrace_files
if bluescreen_export_symbols
if bluescreen_export_symbols and is_debug
project_export_dynamic = true
endif
else