diff options
Diffstat (limited to 'vcpkg_overlay-ports/asio/vcpkg.json')
| -rw-r--r-- | vcpkg_overlay-ports/asio/vcpkg.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/vcpkg_overlay-ports/asio/vcpkg.json b/vcpkg_overlay-ports/asio/vcpkg.json new file mode 100644 index 000000000..38140acc5 --- /dev/null +++ b/vcpkg_overlay-ports/asio/vcpkg.json @@ -0,0 +1,27 @@ +{ + "name": "asio", + "version": "1.18.1", + "description": "Asio is a cross-platform C++ library for network and low-level I/O programming that provides developers with a consistent asynchronous model using a modern C++ approach.", + "homepage": "https://github.com/chriskohlhoff/asio", + "documentation": "https://think-async.com/Asio/asio-1.18.0/doc/", + "features": { + "coroutine": { + "description": "Boost.Coroutine (optional) if you use spawn() to launch coroutines", + "dependencies": [ + "boost-coroutine" + ] + }, + "openssl": { + "description": "OpenSSL (optional) if you use Asio's SSL support.", + "dependencies": [ + "openssl" + ] + }, + "regex": { + "description": "Boost.Regex (optional) if you use any of the read_until() or async_read_until() overloads that take a boost::regex parameter.", + "dependencies": [ + "boost-regex" + ] + } + } +} |