projects
/
libam7xxx.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcfbdfd
)
CMakeLists.txt: disable -Wsign-conversion warnings
author
Antonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 20:53:19 +0000
(22:53 +0200)
committer
Antonio Ospite <ospite@studenti.unina.it>
Sat, 27 Jul 2013 22:14:47 +0000
(
00:14
+0200)
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index
49c3ac0
..
df06d81
100644
(file)
--- 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)