Не могу подключить <curl/curl.h> к своему Clion проекту на Windows 10
#include <iostream> #include <curl/curl.h> int getCurrentMMR(std::string steamId) { CURL *curl; CURLcode res; std::string readBuffer; curl = curl_easy_init(); if(curl)…