CMake: Swap -g for -g1 in Linux Release builds

-g tends to blow the AppImage sizes up a bit too much...
This commit is contained in:
Stenzek 2023-03-21 22:42:28 +10:00 committed by refractionpcsx2
parent 87d269512e
commit b02af117f8
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ endif()
# Enable debug information in release builds for Linux.
# Makes the backtrace actually meaningful.
if(UNIX AND NOT APPLE)
add_compile_options($<$<CONFIG:Release>:-g>)
add_compile_options($<$<CONFIG:Release>:-g1>)
endif()
if(MSVC)