summaryrefslogtreecommitdiff
path: root/indra/cmake/00-Common.cmake
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2014-12-18 09:47:27 -0500
committerOz Linden <oz@lindenlab.com>2014-12-18 09:47:27 -0500
commit7b2045e734d802839a86a874098be77d41acba1c (patch)
treeab9bb4e2953e865719b3cf15e97a096f051de5e5 /indra/cmake/00-Common.cmake
parentca6736807e892db99388b9bcd1ba4b672ff3f7e0 (diff)
allow signed vs unsigned compare in gcc
Diffstat (limited to 'indra/cmake/00-Common.cmake')
-rwxr-xr-xindra/cmake/00-Common.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake
index ec076837f4..eb0eff2f54 100755
--- a/indra/cmake/00-Common.cmake
+++ b/indra/cmake/00-Common.cmake
@@ -209,7 +209,7 @@ if (LINUX OR DARWIN)
endif (CMAKE_CXX_COMPILER MATCHES ".*clang")
if (CMAKE_COMPILER_IS_GNUCXX)
- set(GCC_WARNINGS "-Wall -Wno-trigraphs")
+ set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs")
elseif (CMAKE_COMPILER_IS_CLANGXX)
set(GCC_WARNINGS "-Wall -Wno-sign-compare -Wno-trigraphs")
endif()