mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-18 23:42:15 +00:00
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…
x
Reference in New Issue
Block a user