mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
87d269512e
commit
b02af117f8
|
@ -172,7 +172,7 @@ endif()
|
||||||
# Enable debug information in release builds for Linux.
|
# Enable debug information in release builds for Linux.
|
||||||
# Makes the backtrace actually meaningful.
|
# Makes the backtrace actually meaningful.
|
||||||
if(UNIX AND NOT APPLE)
|
if(UNIX AND NOT APPLE)
|
||||||
add_compile_options($<$<CONFIG:Release>:-g>)
|
add_compile_options($<$<CONFIG:Release>:-g1>)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
|
|
Loading…
Reference in New Issue