Windows下使用vcpkg

使用要求

  • Windows 7 or newer
  • Git
  • Visual Studio 2015 Update 3 or newer

安装vcpkg

  1. 克隆 repo
    git clone https://github.com/Microsoft/vcpkg.git
  2. 运行引导脚本以生成 vcpkg 二进制文件。
    .\vcpkg\bootstrap-vcpkg.bat

使用vcpkg安装库

vcpkg install [packages to install]

vcpkg和MSBuild / Visual Studio一起使用

vcpkg integrate install
在此之后,您可以创建一个新项目或在 IDE 中打开一个现有项目。IntelliSense 应该已经可以发现所有已安装的库,并且无需额外配置即可在代码中使用。

vcpkg+Cmake

cmake -B [build directory] -S . -DCMAKE_TOOLCHAIN_FILE=[path to vcpkg]/scripts/buildsystems/vcpkg.cmake
之后使用cmake --build [build directory]编译
使用 CMake,需要使用 find_package() 来引用 Cmakelists.txt 文件中的库。

更多内容

vcpkg documentation

你可能感兴趣的:(Windows下使用vcpkg)