diff --git a/CMakeLists.txt b/CMakeLists.txt index 43a71af..71fe053 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,6 +104,7 @@ set(PRJ_LIBRARIES httplib::httplib libzip::zip OpenSSL::SSL OpenSSL::Crypto + CURL::libcurl ${LUA_LIBRARIES} ) @@ -116,6 +117,7 @@ find_package(httplib CONFIG REQUIRED) find_package(libzip CONFIG REQUIRED) find_package(RapidJSON CONFIG REQUIRED) find_package(sol2 CONFIG REQUIRED) +find_package(CURL CONFIG REQUIRED) add_subdirectory("deps/toml11") include_directories(include) diff --git a/vcpkg.json b/vcpkg.json index 723a24d..cc7e74f 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -13,6 +13,7 @@ "nlohmann-json", "openssl", "rapidjson", - "sol2" + "sol2", + "curl" ] }