天天看点

[libtorrent] windows搭建 libtorrent 开发环境

操作系统:win10

开发工具:VS2019

(参考文档:libtorrent)

搭建 libtorrent 步骤:

一. 安装 vcpkg 和 boost

1. 安装 vcpkg 到本地

    git clone https://github.com/microsoft/vcpkg

2. 执行 bootstrap-vcpkg.bat 脚本

    .\vcpkg\bootstrap-vcpkg.bat

3. 添加vcpkg环境变量

    环境变量->PTAH->添加 vcpkg 的目录,如下图:

[libtorrent] windows搭建 libtorrent 开发环境

4. 安装 boost

    .\vcpkg.exe install boost:x86-windows

    (注:此处注意,安装需要一些时间,注意可能会因为缺少 VS英文包 报错)

5. 安装 OpenSSL

    (如果本地没有安装 SSL,那么需要进行此步骤)

    传送门:http://slproweb.com/products/Win32OpenSSL.html (下载 32位 版本)

    安装成功后,配置环境变量:

    环境变量->PTAH->添加 vcpkg 的目录,如下图:

[libtorrent] windows搭建 libtorrent 开发环境

二. 编译 libtorrent

1. 下载 libtorrent 源码

    git clone  https://github.com/arvidn/libtorrent.git

2. git init

    git submodule update --init

3. 修改 CMakeLists.txt

    添加下边两行到 CMakeLists.txt 中

set(VCPKG_ROOT "D:/work/libtorrent/vcpkg/scripts/buildsystems/vcpkg.cmake" CACHE PATH "")
set(CMAKE_TOOLCHAIN_FILE ${VCPKG_ROOT})
           

    位置如图所示:

[libtorrent] windows搭建 libtorrent 开发环境

三. 通过 cmake-gui 生成 vs 项目

1. 下载安装 cmake-gui

    传送门:Download | CMake

[libtorrent] windows搭建 libtorrent 开发环境

2. 配置 libcorrent

    打开 cmake-gui ,设置源码路径和生成路径

[libtorrent] windows搭建 libtorrent 开发环境

    点击 configure 后,选 win32 , 自动生成配置,如下图所示

[libtorrent] windows搭建 libtorrent 开发环境

    配置生成成功后,勾选 build_tests 和 build_examples, 点击 Generate,生成配置文件;如下图所示

[libtorrent] windows搭建 libtorrent 开发环境

四. 编译 libtorrent

1. 打开VS2019 ,加载 .\libtorrent\build\ 路径下的 libtorrent.sln, 如下图所示:

[libtorrent] windows搭建 libtorrent 开发环境

2. 右键 ALL_BUILD ,全部编译,如下图所示:

[libtorrent] windows搭建 libtorrent 开发环境

大功告成。

继续阅读