File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -479,17 +479,25 @@ make -j8
479479
480480``` sh
481481mkdir build && cd build
482- cmake .. -DBUILD_ALL=ON -DCMAKE_INSTALL_PREFIX=pkg
482+ cmake .. -DBUILD_ALL=ON
483483make -j8
484- make install
485484```
486485
486+
487487#### Build with libcurl & openssl (openssl 1.1.0 or above required)
488488
489489``` sh
490490mkdir build && cd build
491- cmake .. -DBUILD_ALL=ON -DWITH_LIBCURL=ON
491+ cmake .. -DBUILD_ALL=ON -DCMAKE_INSTALL_PREFIX=/usr/local
492492make -j8
493+ make install
494+ ```
495+
496+
497+ #### install libco from vcpkg
498+
499+ ``` sh
500+ vcpkg install co:x64-windows
493501```
494502
495503
Original file line number Diff line number Diff line change @@ -476,7 +476,7 @@ make -j8
476476
477477``` sh
478478mkdir build && cd build
479- cmake .. -DBUILD_ALL=ON -DCMAKE_INSTALL_PREFIX=pkg
479+ cmake .. -DBUILD_ALL=ON -DCMAKE_INSTALL_PREFIX=/usr/local
480480make -j8
481481make install
482482```
@@ -491,6 +491,13 @@ make -j8
491491```
492492
493493
494+ #### 从 vcpkg 安装 libco
495+
496+ ``` sh
497+ vcpkg install co:x64-windows
498+ ```
499+
500+
494501
495502
496503## License
You can’t perform that action at this time.
0 commit comments