vcpkg
git clone https://github.com/Microsoft/vcpkg.git Vcpkg
cd Vckpg
.\bootstrap-vcpkg.bat
将 vcpkg 路径添加到系统 PATH
检查vcpkg 环境
vcpkg version
coturn
git clone https://github.com/coturn/coturn.git Coturn
cd Coturn
mkdir build
cd build
cmake.exe -G "Visual Studio 17 2022" -A x64 -DVCPKG_TARGET_TRIPLET=x64-windows -DVCPKG_BUILD_TYPE=release -DCMAKE_TOOLCHAIN_FILE:STRING="G:\MyProject\NLRS\Vcpkg\scripts\buildsystems\vcpkg.cmake" ..\

Visual Studio 2022
然后在build文件夹下打开coturn.sln 生成解决方案即可

