Skip to content

Commit b647315

Browse files
committed
Disable warning for deprecated declarations.
1 parent 8a1d6be commit b647315

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,11 @@ if(APPLE)
157157
# build output for our Objective-C++ files much too verbose.
158158
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-nullability-completeness")
159159
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-nullability-completeness")
160+
if(DESKTOP)
161+
# Mac desktop Firestore build requires -Wno-deprecated-declarations
162+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-deprecated-declarations")
163+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations")
164+
endif()
160165
endif()
161166

162167
if(DESKTOP AND NOT MSVC AND NOT APPLE)

0 commit comments

Comments
 (0)