From 837d4c4047f9a0bed7a83bfdcec7a8603af5c886 Mon Sep 17 00:00:00 2001 From: Lucas Walter Date: Tue, 16 Jul 2024 20:15:36 -0700 Subject: [PATCH] use CURL::libcurl instead of in cmakelists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e2a90cb..ecacd0c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ catkin_package( INCLUDE_DIRS include) add_library(${PROJECT_NAME} src/retriever.cpp) -target_link_libraries(${PROJECT_NAME} ${CURL_LIBRARIES} ${catkin_LIBRARIES}) +target_link_libraries(${PROJECT_NAME} CURL::libcurl ${catkin_LIBRARIES}) if(CATKIN_ENABLE_TESTING) add_subdirectory(test EXCLUDE_FROM_ALL)