From 29163354ec9a67878d6d02eb15c37b8dd5abb34e Mon Sep 17 00:00:00 2001 From: Kaian Date: Mon, 8 Apr 2019 21:12:43 +0200 Subject: [PATCH] cmake: disable pedantic warning checks --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29b35f9..e32bb8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(sngrep set(PROJECT_NAME sngrep) set(CMAKE_C_FLAGS_DEBUG "-O0 -ggdb -p -g") -add_compile_options(-Wall -pedantic -Wextra) +add_compile_options(-Wall -Wextra) if (CMAKE_VERSION VERSION_LESS "3.1") if (CMAKE_C_COMPILER_ID STREQUAL "GNU")