all repos — mgba @ 6bbb1d5b43403985f4544207b76792e1484c43cd

mGBA Game Boy Advance Emulator

Put back gnu99 standard, we use some of the features
Jeffrey Pfau jeffrey@endrift.com
Wed, 23 Jul 2014 22:57:25 -0700
commit

6bbb1d5b43403985f4544207b76792e1484c43cd

parent

ec4eb253e5d940429195c9525018fb42d9c8e71a

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M CMakeLists.txtCMakeLists.txt

@@ -1,8 +1,8 @@

cmake_minimum_required(VERSION 2.6) project(GBAc) set(BINARY_NAME gbac CACHE INTERNAL "Name of output binaries") -set(CMAKE_C_FLAGS_DEBUG "-g -Wall -Wextra -std=c99") -set(CMAKE_C_FLAGS_RELEASE "-O3 -Wall -Wextra -std=c99") +set(CMAKE_C_FLAGS_DEBUG "-g -Wall -Wextra -std=gnu99") +set(CMAKE_C_FLAGS_RELEASE "-O3 -Wall -Wextra -std=gnu99") set(USE_CLI_DEBUGGER ON CACHE BOOL "Whether or not to enable the CLI-mode ARM debugger") set(USE_GDB_STUB ON CACHE BOOL "Whether or not to enable the GDB stub ARM debugger") set(BUILD_SDL ON CACHE BOOL "Build SDL frontend")