From 77895090dc6b63aa69f03da440744bcbc5ab17a4 Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Mon, 21 Oct 2024 17:13:11 +0100 Subject: [PATCH] Fix Android build --- plugins/feature/limerfe/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/feature/limerfe/CMakeLists.txt b/plugins/feature/limerfe/CMakeLists.txt index 07a7e279b..f23c61f20 100644 --- a/plugins/feature/limerfe/CMakeLists.txt +++ b/plugins/feature/limerfe/CMakeLists.txt @@ -60,6 +60,9 @@ target_link_libraries(${TARGET_NAME} PRIVATE ${TARGET_LIB_GUI} ${LIMESUITE_LIBRARY} ) +if(ANDROID) + target_link_libraries(${TARGET_NAME} PRIVATE ${LIBUSB_LIBRARIES} log) +endif() install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})