summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2016-08-17 10:15:20 +0200
committerYehonal <yehonal.azeroth@gmail.com>2016-08-17 10:15:20 +0200
commitd28a81198dff30d6c1ca1b7b917d0c9eef0c97a4 (patch)
tree179f35bfbe19f582d132d9fd4881070814db736c /modules
parenta6d4db8910b14194fbb764ea95efb881c0005d74 (diff)
Enabled c99 support for C files
Diffstat (limited to 'modules')
-rw-r--r--modules/acore/cmake/compiler/gcc/settings.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/acore/cmake/compiler/gcc/settings.cmake b/modules/acore/cmake/compiler/gcc/settings.cmake
index bd6df376fa..bd3437dac5 100644
--- a/modules/acore/cmake/compiler/gcc/settings.cmake
+++ b/modules/acore/cmake/compiler/gcc/settings.cmake
@@ -10,8 +10,8 @@ endif()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
message(STATUS "GCC: Enabled c++11 support")
-#set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
-#message(STATUS "GCC: Enabled C99 support")
+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
+message(STATUS "GCC: Enabled C99 support")
if(PLATFORM EQUAL 32)
# Required on 32-bit systems to enable SSE2 (standard on x64)