Clang 3party lib warning supression.

This commit is contained in:
Vladimir Byko-Ianko 2017-07-14 11:39:38 +03:00 committed by Vladimir Byko-Ianko
parent 8b7b392cbb
commit 93b13730ae
10 changed files with 50 additions and 1 deletions

View file

@ -10,6 +10,12 @@ add_compile_options(
"-Wall"
)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-unused-function"
)
endif()
include_directories(include)
set(

View file

@ -10,6 +10,12 @@ add_definitions(
-DU_ENABLE_DYLOAD=0
)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-deprecated-declarations"
)
endif()
set(CMAKE_PREFIX_PATH ./)
include_directories(common i18n common/unicode ./)

View file

@ -2,6 +2,12 @@ project(oauthcpp)
include_directories(include src)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-shorten-64-to-32"
)
endif()
set(
SRC
include/liboauthcpp/liboauthcpp.h

View file

@ -2,6 +2,12 @@ project(minizip)
add_definitions(-DUSE_FILE32ZPI -DNOCRYPT)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-unused-value"
)
endif()
set(
SRC
ioapi.c

View file

@ -11,7 +11,6 @@ add_compile_options(
"-std=c++11"
)
set(
SRC
opening_hours.hpp

View file

@ -6,6 +6,12 @@ include_directories(
${OMIM_ROOT}/3party/osrm/osrm-backend/third_party
)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-overloaded-virtual"
)
endif()
set(
SRC
boost_stub.cpp

View file

@ -6,6 +6,13 @@ if (NOT PLATFORM_WIN)
add_definitions(-DHAVE_PTHREAD)
endif ()
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-deprecated-declarations"
"-Wno-shorten-64-to-32"
)
endif()
set(
SRC
config.h

View file

@ -1,5 +1,11 @@
project(sdf_image)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-shorten-64-to-32"
)
endif()
set(
SRC
sdf_image.cpp

View file

@ -4,6 +4,12 @@ add_definitions(-DLTC_NO_ROLC)
include_directories(src/headers)
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wno-unused-local-typedef"
)
endif()
set(
SRC
bit_vector.hpp

View file

@ -286,6 +286,7 @@ add_compile_options(
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(
"-Wshorten-64-to-32"
"-Wno-unused-local-typedef"
)
endif()