- 由于之前的Hunter 包管理器在Boost的构建中速度太慢,准备尝试一下vcpkg。
- vcpkg是由microsoft开发的、适用于 Windows、Linux 和 MacOS 的 C++ 库管理器。
1. 安装 vcpkg:
普通安装
C:\windows\system32>git clone https://github.com/microsoft/vcpkg.git
C:\windows\system32>cd vcpkg
C:\windows\system32>.\bootstrap-vcpkg.bat # 下载并放置vcpkg.exe文件
Visual Studio 2022安装
2. 安装 Boost 库:
- 初始化 : 在命令行中执行
vcpkg new --application
- 添加依赖:修改生成的
vcpkg.json
(或vcpkg add port boost
)
{
"dependencies": [
"boost"
]
}
- 安装依赖:
C:\Users\multisim\source\repos\CMakeProject2>vcpkg install
3. 集成 vcpkg 与你的项目:
C:\Users\multisim\source\repos\CMakeProject3>vcpkg integrate install
已为此 vcpkg 根应用用户范围的集成。
CMake 项目应使用:“-DCMAKE_TOOLCHAIN_FILE=C:/Program Files/Microsoft Visual Studio/2022/Community/VC/vcpkg/scripts/buildsystems/vcpkg.cmake”
所有 MSBuild C++ 项目现在可以包含(#include)任何已安装的库。系统将自动处理链接。安装新库将使它们立即可用。
- 如果使用 CMake,尝试在 CMakeLists.txt 文件中添加
set(CMAKE_TOOLCHAIN_FILE "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/vcpkg/scripts/buildsystems/vcpkg.cmake")
但是报错,后边参考vcpkg cmake 踩坑经历将cmake文件直接引入到项目中
cmake_minimum_required (VERSION 3.8)
project ("CMakeProject2")
include("C:/Program Files/Microsoft Visual Studio/2022/Community/VC/vcpkg/scripts/buildsystems/vcpkg.cmake") # https://blog.csdn.net/a2476100824/article/details/130354025
find_package(Boost CONFIG REQUIRED regex)
add_executable (CMakeProject2 "CMakeProject2.cpp" "CMakeProject2.h")
target_link_libraries(CMakeProject2 PUBLIC Boost::regex)
- 运行效果
注:
- 同一个依赖包可能在不同的c++包管理器中有不同的名称,比如conan中的di/1.3.0和vcpkg 中的bext-di :
C:\Users\multisim\Desktop\IPFS_PROJECT\cpp-libp2p-master>vcpkg search Injection
bext-di 1.3.0#1 C++14 Dependency Injection Library.
bext-di[extensions] Build with extensions included
fruit 3.7.1 Fruit, a dependency injection framework for C++ by Google
kangaru 4.3.2 A dependency injection container for C++11, C++14 and later
kangaru[hashtypeid] Enable hash based type id
结果可能已过时。运行 `git pull` 以获取最新结果。
如果未列出你的端口,请在发出和/或考虑发出拉取请求时开立问题。 - https://github.com/Microsoft/vcpkg/issues