We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a1d6be commit b647315Copy full SHA for b647315
CMakeLists.txt
@@ -157,6 +157,11 @@ if(APPLE)
157
# build output for our Objective-C++ files much too verbose.
158
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-nullability-completeness")
159
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()
165
endif()
166
167
if(DESKTOP AND NOT MSVC AND NOT APPLE)
0 commit comments