调整链接顺序, 修正编译问题

webrtc 依赖于 zlmediakit
This commit is contained in:
wxf 2021-06-26 16:55:30 +08:00
parent 8c670c652e
commit a92b02907d

View File

@ -241,7 +241,7 @@ if (ENABLE_WEBRTC)
include_directories(./webrtc) include_directories(./webrtc)
file(GLOB SRC_WEBRTC_LIST ./webrtc/*.cpp ./webrtc/*.h ./webrtc/*.hpp) file(GLOB SRC_WEBRTC_LIST ./webrtc/*.cpp ./webrtc/*.h ./webrtc/*.hpp)
add_library(webrtc ${SRC_WEBRTC_LIST}) add_library(webrtc ${SRC_WEBRTC_LIST})
list(APPEND LINK_LIB_LIST webrtc) list(PREPEND LINK_LIB_LIST webrtc)
else () else ()
message(WARNING "srtp未找到, webrtc相关功能打开失败") message(WARNING "srtp未找到, webrtc相关功能打开失败")
endif () endif ()