Skip to content

Commit

Permalink
Change C_STANDARD to C11
Browse files Browse the repository at this point in the history
C17 is not available until cmake 3.21, and it does not seem necessary
  • Loading branch information
Marcello Caramma committed Nov 11, 2024
1 parent 531537d commit bf1e582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option(ENABLE_STATIC_LIB "Build static library" ON)

# lots of warnings and all warnings as errors
## add_compile_options(-Wall -Wextra )
set(CMAKE_C_STANDARD 17)
set(CMAKE_C_STANDARD 11)

file(GLOB_RECURSE SRC_LIST_C CONFIGURE_DEPENDS "${PROJECT_SOURCE_DIR}/g722*.c" )

Expand Down

0 comments on commit bf1e582

Please sign in to comment.