From eb6f610a45ab12aaa2e5398c8af102615179824e Mon Sep 17 00:00:00 2001 From: bgs99 Date: Fri, 6 Sep 2024 14:22:03 +0300 Subject: [PATCH] Fix find_package for curl (#1920) --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 75dd978..f526047 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -24,7 +24,7 @@ else() FetchContent_MakeAvailable(gtest) endif() -find_package(curl REQUIRED) +find_package(CURL REQUIRED) add_executable(httplib-test test.cc) target_compile_options(httplib-test PRIVATE "$<$:/utf-8;/bigobj>")