chore(README): Add vcpkg installation instructions #2940

This commit is contained in:
Alex Fabijanic 2022-06-21 18:07:58 +02:00
parent 15e242b4bc
commit 3ca26804e2
2 changed files with 33 additions and 0 deletions

17
README
View File

@ -150,6 +150,23 @@ If you cannot or do not want to build with CMake, there are other options,
described in the following.
BUILDING - USING VCPKG
===================
You can download and install poco using the vcpkg(https://github.com/Microsoft/vcpkg)
dependency manager:
$ git clone https://github.com/Microsoft/vcpkg.git
$ cd vcpkg
$ ./bootstrap-vcpkg.sh
$ ./vcpkg integrate install
$ ./vcpkg install poco
The poco port in vcpkg is kept up to date by Microsoft team members and community contributors.
If the version is out of date, please create an issue or pull request(https://github.com/Microsoft/vcpkg)
on the vcpkg repository.
BUILDING ON WINDOWS
===================

View File

@ -125,6 +125,22 @@ The default install location is `/usr/local/` on Linux and macOS and
the `CMAKE_INSTALL_PREFIX` CMake variable.
#### Building and Installing - Using vcpkg
You can download and install poco using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager:
```
$ git clone https://github.com/Microsoft/vcpkg.git
$ cd vcpkg
$ ./bootstrap-vcpkg.sh
$ ./vcpkg integrate install
$ ./vcpkg install poco
```
The poco port in vcpkg is kept up to date by Microsoft team members and community contributors.
If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg)
on the vcpkg repository.
### Building Without CMake
If you do not want to or cannot use CMake, POCO can also be built with Visual Studio