1.Vcpkg支持任意版本安装

项目上客户端的环境是在Vcpkg上集成的,具体可以参考本站的博客,写的特别详细https://blog.csdn.net/cjmqas/article/details/79282847,Vcpkg上支持的版本可以使用命令,例如查看当前支持的gRPC版本

PS D:\Google\vcpkg-master> .\vcpkg.exe search grpc
grpc 1.18.0 An RPC library and framework

如果你是在github上下载ZIP到本地,那么就没有git回退的功能,但是查找了很多资料都没有关于任意版本安装的教程,后来慢慢摸索出来了,废话不多说,下面就介绍。

在vcpkg-master\ports目录下,最少维护了两个文件:CONTROL和portfile.cmake
在这里插入图片描述
其中CONTROL维护文件Source、Version、Build-Depends、Homepage、Description

Source: grpc
Version: 1.18.0
Build-Depends: zlib, openssl, protobuf, c-ares (!uwp)
Homepage: https://github.com/grpc/grpc/tree/v1.18.x
Description: An RPC library and framework

portfile.cmake 中维护文件的CMake编译信息,用于Vcpkg配置环境。

vcpkg_from_github(    
OUT_SOURCE_PATH SOURCE_PATH    
REPO grpc/grpc    
REF 75475f090875e737ad6909a6057c59577f0c79b1    
SHA512 db9ff82dee38cb0f4ba10874d10bf6cb20c8a4d49e7dd24bcd9f71388c54c782ee12fda6f1bfedd79ad988b0275d3f96df4686217465acfafcfb5e4c30093a5b    HEAD_REF master    
PATCHES        
	00001-fix-uwp.patch        
	00002-static-linking-in-linux.patch        
	00003-undef-base64-macro.patch        
	00004-link-gdi32-on-windows.patch)
GitHub 加速计划 / vc / vcpkg
8
1
下载
vcpkg - 一个用于管理 C 和 C++ 库的工具,支持在 Windows、Linux 和 macOS 上安装和集成各种库。
最近提交(Master分支:3 个月前 )
80d54ff6 Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com> Co-authored-by: Alexander Neumann <alexander.neumann@hamburg.de> Co-authored-by: Kai Pastor <dg0yt@darc.de> Co-authored-by: Billy O'Neal <bion@microsoft.com> Co-authored-by: Javier Matos <javiermatos@Javiers-Laptop.local> 3 天前
1bf27ad2 3 天前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐