Set C11 standard version consistently (commented out for now)

This commit is contained in:
Denis Glazachev 2021-03-29 14:52:54 +04:00
parent b84c55794d
commit 3e68d14ed1

View File

@ -266,6 +266,9 @@ else ()
set (CMAKE_CXX_STANDARD_REQUIRED ON)
endif ()
#set (CMAKE_C_STANDARD 11)
#set (CMAKE_C_EXTENSIONS ON)
#set (CMAKE_C_STANDARD_REQUIRED ON)
if (COMPILER_GCC OR COMPILER_CLANG)
# Enable C++14 sized global deallocation functions. It should be enabled by setting -std=c++14 but I'm not sure.