Skip to content

Commit 2d288b8

Browse files
committed
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.
1 parent 4c0a91f commit 2d288b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ target_link_libraries(FirebaseCore PUBLIC
8080
target_link_libraries(FirebaseCore PRIVATE
8181
firebase_app
8282
flatbuffers
83-
$<$<PLATFORM_ID:ANDROID>:log>
83+
$<$<PLATFORM_ID:Android>:log>
8484
$<$<PLATFORM_ID:Windows>:libcurl>
8585
$<$<PLATFORM_ID:Windows>:zlibstatic>)
8686
if(ANDROID)

0 commit comments

Comments
 (0)