Microphone support

This commit is contained in:
Caten
2026-01-08 22:55:51 +08:00
parent 68ca11e7ed
commit 8e07f57998
12 changed files with 317 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 3.18.1)
project("native-socket")
# 添加库
add_library(native-socket SHARED native-socket.cpp)
# 链接日志库
find_library(log-lib log)
# 指定目标属性
target_link_libraries(native-socket ${log-lib})