如果没有将vcpkg.exe所在目录配置到环境变量中,需要cd到所在目录,通过powershell或者cmd运行以下指令 .\vcpkg.exe install curl:x64-windows 引用库 在引用库的时候,我按照教程在CMakeLists.txt中添加了以下片段 set(CMAKE_TOOLCHAIN_FILE"C:\\src\\vcpkg\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake"CACHE STRI...
>cdd:\vcpkg# 根据你的目录进行修改> ./vcpkg.exe install curl:x64-windows > ./vcpkg.exe install jsoncpp:x64-windows > ./vcpkg.exe install openssl:x64-windows 每安装完一个库,都会提示如何包含库,执行上面代码后会输出以下使用说明: find_package(CURL CONFIG REQUIRED)target_link_libraries(main PRIV...
> vcpkg install curl:x64-windows 注意:这里的arm架构特指类似于surface这种运行在arm处理器上的Win10平台,而并非我们传统意义上的Linux或android的ARM平台。 3.3 移除一个开源库(已安装) 想移除一个已经安装的开源库,那么执行 remove 指令即可。比如我们要移除 curl 库: > vcpkg remove curl 注意: 1. 默认移...
>cdd:\vcpkg# 根据你的目录进行修改> ./vcpkg.exe install curl:x64-windows > ./vcpkg.exe install jsoncpp:x64-windows > ./vcpkg.exe install openssl:x64-windows 每安装完一个库,都会提示如何包含库,执行上面代码后会输出以下使用说明: find_package(CURL CONFIG REQUIRED) target_link_libraries(main PR...
arm-windows arm64-uwp arm64-windows x64-uwp x64-windows-static x64-windows x86-uwp x86-windows-static x86-windows 比如我们要安装 x64-windows 版本的 curl 库: > vcpkg install curl:x64-windows 1. 注意:这里的arm架构特指类似于surface这种运行在arm处理器上的Win10平台,而并非我们传统意义上的Lin...
vcpkg.exe install curl:x64-windows Create a console app on visual studio Try to send a post request to a https website Expected behavior curl_easy_perform not hanging Failure logs callstack: libcurl-d.dll!Curl_fillreadbuffer(Curl_easy * data, unsigned __int64 bytes, unsigned __int64 * ...
Change Dir: 'C:/Users/nabiizy/vcpkg/buildtrees/curl/x64-windows-rel/CMakeFiles/CMakeScratch/TryCompile-isyma7' Run Build Command(s): "C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/Ninja/ninja.exe" -v cmTC_50b16 ...
vcpkg install zlib --triplet=x64-windows # 可以 这个问题最后是这样解决的,这是因为在系统环境变量...
(1)使用vcpkg安装osgEarth依赖项 osg、gdal、curl 这里是使用PowerShell7命令行工具,在目录 E:\osgEarth\vcpkg\vcpkg 也就是vcpkg.exe同级目录: 在文件夹E:\osgEarth\vcpkg\vcpkg 空白处点击鼠标左键,选择“在Windows终端 预览版中打开” 输入命令 : .\vcpkg install osg:x64-windows gdal:x64-windows curl:...
指定特性,编译curl 执行命令:vcpkg.exe install curl[brotli,c-ares,http2,ldap,non-http,openssl,tool,websockets,zstd]:x86-windows,中括号里面就是特性,可以用逗号分隔以同时支持多个特性。最后:x86-windows就是指要编译32位的版本,如果需要64位的,就填:x64-windows,前面提到的相应的库也要改为64位的。