From c44df3d93233ec14447009b05c29ae5dde94464f Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Wed, 23 Apr 2014 04:11:41 -0500 Subject: [PATCH] Moves a few Cmake options so that debug options are near one another. Moves GDBSTUB to the top as well where it should be. --- CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e6609e72a..b711230c19 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,10 +11,12 @@ option(USE_UPNP "Enables UPnP port mapping support" ON) option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF) 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(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 # TODO: Add DSPSpy @@ -306,7 +308,6 @@ if(FASTLOG) add_definitions(-DDEBUGFAST) endif() -option(GDBSTUB "Enable gdb stub for remote debugging." OFF) if(GDBSTUB) add_definitions(-DUSE_GDBSTUB) endif(GDBSTUB)