File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ cmake_minimum_required (VERSION 3.11)
22
33FetchContent_DeclareShallowGit(
44 abseil-cpp
5- GIT_REPOSITORY https://chromium.googlesource.com/chromium/src/third_party/abseil-cpp
6- GIT_TAG f81f6c011baf9b0132a5594c034fe0060820711d
5+ GIT_REPOSITORY https://chromium.googlesource.com/chromium/src/third_party/abseil-cpp
6+ GIT_TAG 72093794ac42be8105817ae0b0569fb411a6ca9b
77)
88
99set (CMAKE_CXX_STANDARD 17)
@@ -12,13 +12,5 @@ set(CMAKE_CXX_EXTENSIONS OFF)
1212
1313set (ABSL_PROPAGATE_CXX_STD ON CACHE BOOL "" FORCE)
1414
15- if (("${CMAKE_CXX_COMPILER_ID} " STREQUAL "Clang" ) OR ("${CMAKE_CXX_COMPILER_ID} " STREQUAL "AppleClang" ))
16- add_compile_options (
17- -Wno-array-parameter
18- -Wno-deprecated-builtins
19- -Wno-unknown-warning-option
20- )
21- endif ()
22-
2315FetchContent_MakeAvailable(abseil-cpp)
2416install (FILES "${abseil-cpp_SOURCE_DIR}/LICENSE" DESTINATION "Licenses/ThirdParty/${DILIGENT_CORE_DIR} " RENAME abseil-cpp-License.txt)
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ endif()
8787
8888if (CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
8989 target_compile_options (tint_api PRIVATE -Wno-switch-default)
90+ target_compile_options (tint_utils_strconv PRIVATE -Wno-nullability-extension)
9091endif ()
9192
9293install (FILES "${Dawn_SOURCE_DIR} /LICENSE" DESTINATION "Licenses/ThirdParty/${DILIGENT_CORE_DIR} " RENAME dawn-License.txt)
You can’t perform that action at this time.
0 commit comments