File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
firestore/integration_test_internal Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ include_directories(src)
203203include_directories (${FIREBASE_CPP_SDK_DIR} )
204204# Additional public headers from Firestore core SDK.
205205include_directories (${PROJECT_BINARY_DIR} /bin/external/src/firestore)
206+ include_directories (${PROJECT_BINARY_DIR} /bin/external/src/nanopb)
206207# Additional public headers for absl.
207208include_directories (${ABSEIL_CPP_ROOT} )
208209# Allow testing internal Firebase APIs.
@@ -284,7 +285,7 @@ if(ANDROID)
284285 target_include_directories (${integration_test_target_name} PRIVATE
285286 ${ANDROID_NDK} /sources /android/native_app_glue)
286287
287- set (ADDITIONAL_LIBS log android atomic native_app_glue nanopb )
288+ set (ADDITIONAL_LIBS log android atomic native_app_glue)
288289else ()
289290 set (ABSEIL_CPP_ROOT ${CMAKE_CURRENT_LIST_DIR} /external/abseil-cpp/src/abseil-cpp)
290291
@@ -338,9 +339,9 @@ else()
338339 "-framework SystemConfiguration"
339340 )
340341 elseif (MSVC )
341- set (ADDITIONAL_LIBS advapi32 ws2_32 crypt32 nanopb )
342+ set (ADDITIONAL_LIBS advapi32 ws2_32 crypt32)
342343 else ()
343- set (ADDITIONAL_LIBS pthread nanopb )
344+ set (ADDITIONAL_LIBS pthread)
344345 endif ()
345346
346347 # If a config file is present, copy it into the binary location so that it's
You can’t perform that action at this time.
0 commit comments