mirror of https://github.com/PCSX2/pcsx2.git
Don't use O2 in the Debug Build.
This commit is contained in:
parent
0e783f0003
commit
ddc9c394a2
|
@ -272,7 +272,11 @@ else()
|
|||
endif()
|
||||
|
||||
if(NOT DEFINED OPTIMIZATION_FLAG)
|
||||
set(OPTIMIZATION_FLAG -O2)
|
||||
if (CMAKE_BUILD_TYPE STREQUAL Debug)
|
||||
set(OPTIMIZATION_FLAG -O0)
|
||||
else()
|
||||
set(OPTIMIZATION_FLAG -O2)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Note: -DGTK_DISABLE_DEPRECATED can be used to test a build without gtk deprecated feature. It could be useful to port to a newer API
|
||||
|
|
Loading…
Reference in New Issue