Vcpkg安装
从Github拉取源目录
https://github.com/microsoft/vcpkg.git
执行 bootstrap-vcpkg.bat 文件安装
cd vcpkg
bootstrap-vcpkg.bat
初始化到全局
vcpkg integrate install
-DCMAKE_TOOLCHAIN_FILE=[vcpkg dir]/vcpkg/scripts/buildsystems/vcpkg.cmake
在Shell中启动自动补全
Windows上不怎么好使
vcpkg integrate powershell
安装C++库文件
由于Windows下架构为X64,因此安装时必须加上
--triplet x64-windows
例如👇👇👇