···8888find_library(RT_LIBRARY rt)
8989if(ANDROID)
9090 find_library(ANDROID_LIBRARY android)
9191+ find_library(ANDROID_LOG_LIBRARY log)
9192endif()
92939394# This one is named differently because that's what CTest uses
+3
src/xrt/auxiliary/CMakeLists.txt
···199199else()
200200 target_link_libraries(aux_util PUBLIC xrt-external-cjson)
201201endif()
202202+if(ANDROID)
203203+ target_link_libraries(aux_util PUBLIC ${ANDROID_LOG_LIBRARY})
204204+endif()
202205203206# Tracking library.
204207add_library(aux_tracking STATIC ${TRACKING_SOURCE_FILES})