forked from organicmaps/organicmaps
Clang 3party lib warning supression.
This commit is contained in:
parent
8b7b392cbb
commit
93b13730ae
10 changed files with 50 additions and 1 deletions
|
@ -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(
|
||||
|
|
|
@ -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 ./)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -11,7 +11,6 @@ add_compile_options(
|
|||
"-std=c++11"
|
||||
)
|
||||
|
||||
|
||||
set(
|
||||
SRC
|
||||
opening_hours.hpp
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue