Lizerui9926
2023-03-16 db12d1c1d8ddbce39fd702dbc9ec4bcfbcb2003a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 
 
if(WIN32)
    add_definitions(-DWEBRTC_WIN)
else()
    add_definitions(-DWEBRTC_POSIX)
endif()
 
 
include_directories("..")
 
file(GLOB_RECURSE files "*.c" "rtc_base/checks.cc")
 
message("${files}")
 
add_library(webrtcvad ${files})