From 635d13b6ad60c1d0fbb89f6f7271c52a788c2bda Mon Sep 17 00:00:00 2001 From: Bogdan Guliaev Date: Fri, 6 Sep 2024 13:30:45 +0300 Subject: [PATCH] Fix find_package for curl --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 75dd978cd2..f52604777d 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>")