Getting cURL to work with Visual Studios 2017

前端 未结 1 1875
陌清茗
陌清茗 2020-12-08 16:50

*Edit: I got CURL working in VS 2017 on a 64 bit machine following these steps (see below for original problem):

First install vcpkg:

  1. Clone vcpkg using
相关标签:
1条回答
  • 2020-12-08 17:43

    You've installed the x86 version of curl with vcpkg (That's the x86 in vcpkg\packages\curl_x86\include). You need to install the x64 version to match your project:

    >vcpkg install curl:x64-windows

    0 讨论(0)
提交回复
热议问题