From 064dc076bb7751785bc7f52039091ba23ea1dfdc Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Sat, 16 Mar 2024 18:34:36 +0100 Subject: [PATCH] common: CMakeLists.txt fix typo in logging when lib curl is not found --- common/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 9e85c2337..0331788fd 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -54,7 +54,7 @@ if (CURL_FOUND) include_directories(${CURL_INCLUDE_DIRS}) link_libraries(${CURL_LIBRARIES}) else() - message(INFO "libcurl not found. Building without model download support.") + message(INFO " libcurl not found. Building without model download support.") endif ()