From 0cad89651c43a3dd0d206073b5cf38111e33fbb6 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Sat, 27 Jul 2013 22:53:19 +0200 Subject: [PATCH 1/1] CMakeLists.txt: disable -Wsign-conversion warnings --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 49c3ac0..df06d81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,7 +78,8 @@ if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG) if (STRICT_COMPILATION_CHECKS) add_flags(STRICT_FLAGS -Werror - -Wsign-conversion + # sign conversion warnings can be very noisy for a very little gain + #-Wsign-conversion # NOTE: Vanilla libusb-1.0.8 can't live with -pedantic-errors -pedantic-errors) -- 2.1.4