vcpkg/ports/ned14-internal-quickcpplib/vcpkg.json
Henrik Gaßmann cf48528dff
[llfio,outcome,ned14-internal-quickcpplib] Fix minor nits (#26859)
* [quickcpplib] Properly delimit path option

* [outcome] Prevent buildsystem from enabling concepts pre cxx20

* [llfio] Update port to 2022-09-18

- Disable OpenSSL support until someone properly integrates it.

* [llfio] Disable buildsystem compiler introspection

The buildsystem tries to enable concepts and coroutines via non standard
compiler flags on earlier C++ versions which is exactly the opposite of
what our polyfill features warrant.

* Add versions to database
2022-09-19 11:35:37 -07:00

44 lines
1.0 KiB
JSON

{
"name": "ned14-internal-quickcpplib",
"version-date": "2022-09-08",
"port-version": 1,
"maintainers": [
"Niall Douglas <s_github@nedprod.com>",
"Henrik Gaßmann <henrik@gassmann.onl>"
],
"description": "NOT FOR EXTERNAL CONSUMPTION, a set of internal scripts used by ned14's libraries.",
"homepage": "https://github.com/ned14/quickcpplib",
"license": "Apache-2.0 OR BSL-1.0",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"polyfill-cxx17": {
"description": "Polyfill std::byte with byte-lite",
"dependencies": [
"byte-lite",
{
"name": "ned14-internal-quickcpplib",
"default-features": false,
"features": [
"polyfill-cxx20"
]
}
]
},
"polyfill-cxx20": {
"description": "Polyfill std::span with span-lite",
"dependencies": [
"span-lite"
]
}
}
}