From 8435653fb23c5d0e9354767174f49292b3a5cf15 Mon Sep 17 00:00:00 2001 From: Chris Rizzitello Date: Tue, 12 Feb 2019 13:33:08 -0500 Subject: [PATCH] Remove -Werror compiler flag --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2796f02..5ed2a9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -135,7 +135,6 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options( -Wall -Wextra - -Werror -Wno-address-of-packed-member # ignore for mavlink ) @@ -149,7 +148,6 @@ elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") add_compile_options( -Wall -Wextra - -Werror ) elseif (WIN32)