From 50cc8a929bf1ccca5b2ce04d90dd67f49b1a9477 Mon Sep 17 00:00:00 2001 From: chujiangke Date: Sat, 13 Jul 2024 13:21:27 +0800 Subject: [PATCH] Update CMakeLists.txt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macos 添加libuv 编译通过 --- example/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index 4a924d0..ea6d078 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -9,9 +9,9 @@ link_directories("/usr/local/lib/") endif() if(ASAN) - set(LINK_LIB asan rtsp2_static uv_a pthread dl) + set(LINK_LIB asan rtsp2_static uv pthread dl) else() - set(LINK_LIB rtsp2_static uv_a pthread dl) + set(LINK_LIB rtsp2_static uv pthread dl) endif() add_executable(rtsp_v1_client_use_libuv rtsp_v1_client_use_libuv.cpp)