mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
Moves a few Cmake options so that debug options are near one another.
Moves GDBSTUB to the top as well where it should be.
This commit is contained in:
parent
9f12d02328
commit
c44df3d932
@ -11,10 +11,12 @@ option(USE_UPNP "Enables UPnP port mapping support" ON)
|
|||||||
option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF)
|
option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF)
|
||||||
option(ENABLE_PCH "Use PCH to speed up compilation" ON)
|
option(ENABLE_PCH "Use PCH to speed up compilation" ON)
|
||||||
|
|
||||||
option(FASTLOG "Enable all logs" OFF)
|
|
||||||
option(OPROFILING "Enable profiling" OFF)
|
|
||||||
option(OPENMP "Enable OpenMP parallelization" ON)
|
option(OPENMP "Enable OpenMP parallelization" ON)
|
||||||
option(ENCODE_FRAMEDUMPS "Encode framedumps in AVI format" ON)
|
option(ENCODE_FRAMEDUMPS "Encode framedumps in AVI format" ON)
|
||||||
|
|
||||||
|
option(FASTLOG "Enable all logs" OFF)
|
||||||
|
option(OPROFILING "Enable profiling" OFF)
|
||||||
|
option(GDBSTUB "Enable gdb stub for remote debugging." OFF)
|
||||||
########################################
|
########################################
|
||||||
# Optional Targets
|
# Optional Targets
|
||||||
# TODO: Add DSPSpy
|
# TODO: Add DSPSpy
|
||||||
@ -306,7 +308,6 @@ if(FASTLOG)
|
|||||||
add_definitions(-DDEBUGFAST)
|
add_definitions(-DDEBUGFAST)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
option(GDBSTUB "Enable gdb stub for remote debugging." OFF)
|
|
||||||
if(GDBSTUB)
|
if(GDBSTUB)
|
||||||
add_definitions(-DUSE_GDBSTUB)
|
add_definitions(-DUSE_GDBSTUB)
|
||||||
endif(GDBSTUB)
|
endif(GDBSTUB)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user