C ++链接卷曲静态

时间:2015-09-09 10:04:55

标签: c++ curl static libcurl

我在DEV C ++环境中使用此代码。

#include <stdio.h>
#include <curl/curl.h>
#include <iostream>

using namespace std;

int main(void){
  CURL *curl;
  CURLcode res;

  curl = curl_easy_init();
  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL, "http://google.com");
    curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
    curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
    curl_easy_setopt(curl, CURLOPT_USERAGENT, "TestAgent");
    res = curl_easy_perform(curl);
    curl_easy_cleanup(curl);
  }
  system("pause");
  return 0;
}

我已经链接了libcurldll.a和libcurl.a文件。我可以编译并运行代码,但可执行文件需要msvcr70.dll和libcurl.dll在同一目录中。我如何静态链接它们?

0 个答案:

没有答案