Merge branch 'gdbstub' into wii-network

Conflicts:
	Source/Core/Core/Src/ConfigManager.cpp
This commit is contained in:
Matthew Parlane
2013-01-08 21:21:05 +13:00
12 changed files with 1066 additions and 10 deletions

View File

@ -222,6 +222,12 @@ if(FASTLOG)
add_definitions(-DDEBUGFAST)
endif()
option(GDBSTUB "Enable gdb stub for remote debugging." OFF)
if(GDBSTUB)
add_definitions(-DUSE_GDBSTUB)
endif(GDBSTUB)
# For now GLES and EGL are tied to each other.
# Enabling GLES also disables the OpenGL plugin.
option(USE_GLES "Enables GLES, disables OGL" OFF)