Android Studio 3.5.3可以成功导入oboe-1.9.0,但无法成功导入最新版的oboe-1.9.3。
https://github.com/google/oboe/archive/refs/tags/1.9.0.zip (Jun 26, 2024)
https://github.com/google/oboe/archive/refs/tags/1.9.3.zip (Dec 18, 2024)

target_link_libraries( # Specifies the target library.
native-lib
# Links the target library to the log library
# included in the NDK.
${log-lib} oboe)
# Set the path to the Oboe directory.
set (OBOE_DIR "D:\\My Documents\\Downloads\\oboe-1.9.0\\oboe-1.9.0")
# Add the Oboe library as a subdirectory in your project.
# add_subdirectory tells CMake to look in this directory to
# compile oboe source files using oboe's CMake file.
# ./oboe specifies where the compiled binaries will be stored
add_subdirectory (${OBOE_DIR} ./oboe)
# Specify the path to the Oboe header files.
# This allows targets compiled with this CMake (application code)
# to see public Oboe headers, in order to access its API.
include_directories (${OBOE_DIR}/include)