vcpkg/ports/open62541/vcpkg.json
Julian Zimmermann 50494bb7d4
[open62541] update to 1.3.5 (#29887)
* update open62541

* run x-add-version

* adds patch to qtopcua to support open62541 v1.3

* x-add-version

* Update ports/open62541/vcpkg.json

Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>

* x-add-version

* remove explicit set of version variable

* x-add-version

* Add a warning when the user tries to turn on both encryption options, as requested by @LilyWangLL.

---------

Co-authored-by: Julian Zimmermann <Julian.Zimmermann@gti.de>
Co-authored-by: Lily Wang <94091114+LilyWangLL@users.noreply.github.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2023-04-14 14:13:31 -07:00

41 lines
956 B
JSON

{
"name": "open62541",
"version": "1.3.5",
"description": "open62541 is an open source C (C99) implementation of OPC UA licensed under the Mozilla Public License v2.0.",
"homepage": "https://open62541.org",
"license": "MPL-2.0",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"openssl"
],
"features": {
"amalgamation": {
"description": "Concatenate the library to a single file open62541.h/.c"
},
"historizing": {
"description": "Enable basic support for historical access (client and server)"
},
"mbedtls": {
"description": "Enable encryption support (uses MbedTLS)",
"dependencies": [
"mbedtls"
]
},
"openssl": {
"description": "Enable encryption support (uses OpenSSL)",
"dependencies": [
"openssl"
]
}
}
}