vcpkg/ports/open62541/vcpkg.json
Alexander Neumann 87ae70da91
[open62541] add amalgamation feature (#16969)
* [open62541] add amalgamation features

* version stuff

* Update versions/baseline.json

* Update ports/open62541/vcpkg.json

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* update version file

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2021-03-31 11:58:31 -07:00

29 lines
708 B
JSON

{
"name": "open62541",
"version": "1.1.2",
"port-version": 1,
"description": "open62541 is an open source C (C99) implementation of OPC UA licensed under the Mozilla Public License v2.0.",
"homepage": "https://open62541.org",
"supports": "!uwp",
"default-features": [
"openssl"
],
"features": {
"amalgamation": {
"description": "Concatenate the library to a single file open62541.h/.c"
},
"mbedtls": {
"description": "Enable encryption support (uses MbedTLS)",
"dependencies": [
"mbedtls"
]
},
"openssl": {
"description": "Enable encryption support (uses OpenSSL)",
"dependencies": [
"openssl"
]
}
}
}