Skip to content

Commit

Permalink
build: correct platform spelling to ensure linkage
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
compnerd committed Jun 21, 2024
1 parent bcf52b5 commit 21e591f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ target_link_libraries(FirebaseCore PUBLIC
target_link_libraries(FirebaseCore PRIVATE
firebase_app
flatbuffers
$<$<PLATFORM_ID:ANDROID>:log>
$<$<PLATFORM_ID:Android>:log>
$<$<PLATFORM_ID:Windows>:libcurl>
$<$<PLATFORM_ID:Windows>:zlibstatic>)
if(ANDROID)
Expand Down

0 comments on commit 21e591f

Please sign in to comment.