Skip to content

Commit

Permalink
build: fix compiler flags
Browse files Browse the repository at this point in the history
remove std=c99 option
  • Loading branch information
0x501D committed May 16, 2023
1 parent de41f71 commit e8c2067
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 @@ -134,7 +134,7 @@ set_property(TARGET ${PROJECT_NAME} PROPERTY C_STANDARD_REQUIRED ON)
set_property(
TARGET ${PROJECT_NAME}
APPEND_STRING
PROPERTY COMPILE_FLAGS "-Wall -Wextra -Wformat-security -pedantic -std=c99 ")
PROPERTY COMPILE_FLAGS "-Wall -Wextra -Wformat-security -pedantic")
set_property(
TARGET ${PROJECT_NAME}
APPEND_STRING
Expand Down

0 comments on commit e8c2067

Please sign in to comment.