From 21e591f6101dd315270796991d403fe25648a5c3 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Fri, 21 Jun 2024 09:56:29 -0700 Subject: [PATCH] build: correct platform spelling to ensure linkage The platform identifier spelling is case sensitive and we would fail to link to `liblog` resulting in underlinking. This corrects the spelling and underlinking as a consequence. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cb79d87..9c081c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -80,7 +80,7 @@ target_link_libraries(FirebaseCore PUBLIC target_link_libraries(FirebaseCore PRIVATE firebase_app flatbuffers - $<$:log> + $<$:log> $<$:libcurl> $<$:zlibstatic>) if(ANDROID)