diff --git a/Windows 版编译说明.md b/Windows-版编译说明.md similarity index 95% rename from Windows 版编译说明.md rename to Windows-版编译说明.md index 877ac38..5d15d68 100644 --- a/Windows 版编译说明.md +++ b/Windows-版编译说明.md @@ -5,7 +5,7 @@ * `scoop`: Windows 命令行下使用的软件包安装管理工具; * `vcpkg`: 微软发起的 C++ 库管理器, 其中有大量常用开源库; -由于可以在命令行下使用, 可以非常方便的进行自动化场景. 推荐大家试用. +由于可以在命令行下使用, 可以非常方便的进行自动化集成. 推荐大家试用. **以下步骤仅在 Windows 10 下测试, 未使用其他 Windows 版本进行测试, 不保证其他 Windows 版本的可用性.** @@ -31,11 +31,11 @@ ``` iwr -useb get.scoop.sh | iex ``` -1. 为 `scoop` 添加 `extra` 软件仓库: +1. 为 `scoop` 添加 `extras` 软件仓库: ``` scoop bucket add extras ``` -1. 安装 `cmake`: +1. 安装 `cmake` 及 `ninja`: ``` scoop install cmake ninja ``` @@ -58,7 +58,7 @@ ``` 1. 编译 `openssl`: ``` - .\vcpkg\vcpkg.exe install --triplet=x64-windows-static libsrtp + .\vcpkg\vcpkg.exe install --triplet=x64-windows-static openssl ``` 1. 编译 `libsrtp`, 需要 `ENABLE_OPENSSL`, 可编辑 `C:\work\develop\vcpkg\ports\libsrtp\portfile.cmake`, 修改 `vcpkg_configure_cmake` 为如下: ```