diff options
Diffstat (limited to 'vcpkg/ports/async-mqtt/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/async-mqtt/vcpkg.json | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/vcpkg/ports/async-mqtt/vcpkg.json b/vcpkg/ports/async-mqtt/vcpkg.json new file mode 100644 index 0000000..2051ace --- /dev/null +++ b/vcpkg/ports/async-mqtt/vcpkg.json @@ -0,0 +1,92 @@ +{ + "name": "async-mqtt", + "version": "10.2.5", + "description": "Header-only Asynchronous MQTT communication library for C++17 based on Boost.Asio.", + "homepage": "https://github.com/redboltz/async_mqtt", + "license": "BSL-1.0", + "dependencies": [ + { + "name": "boost-any", + "version>=": "1.84.0" + }, + { + "name": "boost-asio", + "version>=": "1.84.0" + }, + { + "name": "boost-assert", + "version>=": "1.84.0" + }, + { + "name": "boost-beast", + "version>=": "1.84.0" + }, + { + "name": "boost-container", + "version>=": "1.84.0" + }, + { + "name": "boost-container-hash", + "version>=": "1.84.0" + }, + { + "name": "boost-date-time", + "version>=": "1.84.0" + }, + { + "name": "boost-endian", + "version>=": "1.84.0" + }, + { + "name": "boost-filesystem", + "version>=": "1.84.0" + }, + { + "name": "boost-hana", + "version>=": "1.84.0" + }, + { + "name": "boost-lexical-cast", + "version>=": "1.84.0" + }, + { + "name": "boost-log", + "version>=": "1.84.0" + }, + { + "name": "boost-multi-index", + "version>=": "1.84.0" + }, + { + "name": "boost-numeric-conversion", + "version>=": "1.84.0" + }, + { + "name": "boost-preprocessor", + "version>=": "1.84.0" + }, + { + "name": "boost-system", + "version>=": "1.84.0" + }, + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "tls" + ], + "features": { + "tls": { + "description": "Enable TLS support", + "dependencies": [ + "openssl" + ] + } + } +} |