Merge pull request #941 from ZLMediaKit/feature/fix-cmake-prepend

Revert "调整链接顺序, 修正编译问题"
This commit is contained in:
Xiaofeng Wang 2021-06-28 14:03:44 +08:00 committed by GitHub
commit 42d2c1b4c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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